|
SecurityServiceAuthenticate 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.248-beta
Syntaxpublic UserData Authenticate(
string username,
string password
)
Public Function Authenticate (
username As String,
password As String
) As UserData
public:
virtual UserData^ Authenticate(
String^ username,
String^ password
) sealed
abstract Authenticate :
username : string *
password : string -> UserData
override 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.
Implements
ISecurityServiceAuthenticate(String, String)
See Also