Rally.RestApi.Auth.ApiAuthManager.OpenSsoPage C# (CSharp) Method

OpenSsoPage() private method

Opens the specified SSO URL to the user.
private OpenSsoPage ( Uri ssoUrl ) : void
ssoUrl System.Uri The Uri that the user was redirected to in order to perform their SSO authentication.
return void
		internal void OpenSsoPage(Uri ssoUrl)
		{
			if (ssoUrl == null)
				throw new ArgumentNullException("ssoUrl", "You must provide a URL for completing SSO authentication.");

			OpenSsoPageInternal(ssoUrl);
		}
		/// <summary>