| 
            
              ISecurityServiceAuthenticate Method
             | 
          
        
        
            Authenticates a user and caches the security context upon successful authentication for subsequent use.
            
        
        Namespace: GSF.Web.EmbeddedAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.258-beta
Syntax[OperationContractAttribute]
[WebGetAttribute(UriTemplate = "/authenticate?username={username}&password={password}")]
UserData Authenticate(
	string username,
	string password
)<OperationContractAttribute>
<WebGetAttribute(UriTemplate := "/authenticate?username={username}&password={password}")>
Function Authenticate ( 
	username As String,
	password As String
) As UserData[OperationContractAttribute]
[WebGetAttribute(UriTemplate = L"/authenticate?username={username}&password={password}")]
UserData^ Authenticate(
	String^ username, 
	String^ password
)[<OperationContractAttribute>]
[<WebGetAttribute(UriTemplate = "/authenticate?username={username}&password={password}")>]
abstract Authenticate : 
        username : string * 
        password : string -> UserData function Authenticate(username, password);
 View SourceParameters
- username  String
 - Username of the user.
 - password  String
 - Password of the user.
 
Return Value
UserDataAn 
UserData object of the user.
See Also