AuthenticationStateChange Delegate |
A delegate to indicate that the authentication state (logged in, logged out, pending SSO) has changed.
Namespace: Rally.RestApi.AuthAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public delegate void AuthenticationStateChange(
RallyRestApiAuthenticationResult authenticationResult,
RallyRestApi api
)
Public Delegate Sub AuthenticationStateChange (
authenticationResult As RallyRestApiAuthenticationResult,
api As RallyRestApi
)
public delegate void AuthenticationStateChange(
RallyRestApiAuthenticationResult authenticationResult,
RallyRestApi^ api
)
type AuthenticationStateChange =
delegate of
authenticationResult : RallyRestApiAuthenticationResult *
api : RallyRestApi -> unit
Parameters
- authenticationResult
- Type: Rally.RestApiRallyRestApiAuthenticationResult
The status of authentication. - api
- Type: Rally.RestApiRallyRestApi
The authenticated API that can be used for the user who logged in.
See Also