|
SecurityProviderBase Constructor
|
Initializes a new instance of the security provider.
Namespace: GSF.SecurityAssembly: GSF.Security (in GSF.Security.dll) Version: 2.4.205-beta
Syntax protected SecurityProviderBase(
string username,
bool canRefreshData,
bool canResetPassword,
bool canChangePassword
)
protected:
SecurityProviderBase(
String^ username,
bool canRefreshData,
bool canResetPassword,
bool canChangePassword
)
new :
username : string *
canRefreshData : bool *
canResetPassword : bool *
canChangePassword : bool -> SecurityProviderBase
GSF.Security.SecurityProviderBase = function(username, canRefreshData, canResetPassword, canChangePassword);
View SourceParameters
- username String
- Name that uniquely identifies the user.
- canRefreshData Boolean
- true if the security provider can refresh UserData from the backend data store, otherwise false.
- canResetPassword Boolean
- true if the security provider can reset user password, otherwise false.
- canChangePassword Boolean
- true if the security provider can change user password, otherwise false.
See Also