Click or drag to resize
ApiAuthManagerShowUserLoginWindow Method
Authenticates the user against Rally. This must be called from the UI thread.

Namespace: Rally.RestApi.Auth
Assembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax
public virtual void ShowUserLoginWindow(
	AuthenticationStateChange authenticationStateChange,
	SsoAuthenticationComplete ssoAuthenticationComplete
)

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.
C#
authMgr.ShowUserLoginWindow(authenticationStateChange, ssoAuthenticationComplete);
See Also