| ApiAuthManagerShowUserLoginWindow Method |
Authenticates the user against Rally. This must be called from the UI thread.
Namespace: Rally.RestApi.AuthAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntaxpublic virtual void ShowUserLoginWindow(
AuthenticationStateChange authenticationStateChange,
SsoAuthenticationComplete ssoAuthenticationComplete
)
Public Overridable Sub ShowUserLoginWindow (
authenticationStateChange As AuthenticationStateChange,
ssoAuthenticationComplete As SsoAuthenticationComplete
)
public:
virtual void ShowUserLoginWindow(
AuthenticationStateChange^ authenticationStateChange,
SsoAuthenticationComplete^ ssoAuthenticationComplete
)
abstract ShowUserLoginWindow :
authenticationStateChange : AuthenticationStateChange *
ssoAuthenticationComplete : SsoAuthenticationComplete -> unit
override ShowUserLoginWindow :
authenticationStateChange : AuthenticationStateChange *
ssoAuthenticationComplete : SsoAuthenticationComplete -> unit Parameters
- authenticationStateChange
- Type: Rally.RestApi.AuthAuthenticationStateChange
The delegate to call when an authentication state change occurs. - ssoAuthenticationComplete
- Type: Rally.RestApi.AuthSsoAuthenticationComplete
The delegate to call when an authentication state change occurs due to SSO.
Examples
Opening the login window and passing the two delegates to it.
authMgr.ShowUserLoginWindow(authenticationStateChange, ssoAuthenticationComplete);
See Also