|
OIDCSecurityProvider Constructor (String, Boolean, Boolean, Boolean)
|
Namespace:
GSF.Security
Assembly:
GSF.Security (in GSF.Security.dll) Version: 2.4.4-beta
Syntax protected OIDCSecurityProvider(
string username,
bool canRefreshData,
bool canResetPassword,
bool canChangePassword
)
protected:
OIDCSecurityProvider(
String^ username,
bool canRefreshData,
bool canResetPassword,
bool canChangePassword
)
new :
username : string *
canRefreshData : bool *
canResetPassword : bool *
canChangePassword : bool -> OIDCSecurityProvider
GSF.Security.OIDCSecurityProvider = function(username, canRefreshData, canResetPassword, canChangePassword);
Request Example
View SourceParameters
- username
- Type: SystemString
Name that uniquely identifies the user. - canRefreshData
- Type: SystemBoolean
true if the security provider can refresh UserData from the backend data store, otherwise false. - canResetPassword
- Type: SystemBoolean
true if the security provider can reset user password, otherwise false. - canChangePassword
- Type: SystemBoolean
true if the security provider can change user password, otherwise false.
See Also