ApiAuthManagerAutoAuthenticate Method |
Auto authenticates the user if there are saved credentials.
Namespace: Rally.RestApi.AuthAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public RallyRestApiAuthenticationResult AutoAuthenticate(
bool allowSsoForautoAuthenticate
)
Public Function AutoAuthenticate (
allowSsoForautoAuthenticate As Boolean
) As RallyRestApiAuthenticationResult
public:
RallyRestApiAuthenticationResult AutoAuthenticate(
bool allowSsoForautoAuthenticate
)
member AutoAuthenticate :
allowSsoForautoAuthenticate : bool -> RallyRestApiAuthenticationResult
Parameters
- allowSsoForautoAuthenticate
- Type: SystemBoolean
Is SSO authentication allowed for auto-authentication?
This may open a web browser UI.
Return Value
Type:
RallyRestApiAuthenticationResultThe current state of the authentication process.
RallyRestApiAuthenticationResultExamples RallyRestApi.AuthenticationResult result = authMgr.AutoAuthenticate(false);
See Also