|   | SecurityProviderBase Constructor | 
        
        
            Initializes a new instance of the security provider.
            
        
        Namespace: GSF.SecurityAssembly: GSF.Security (in GSF.Security.dll) Version: 2.4.257-beta
 Syntax
Syntaxprotected SecurityProviderBase(
	string username,
	bool canRefreshData,
	bool canResetPassword,
	bool canChangePassword
)
Protected Sub New ( 
	username As String,
	canRefreshData As Boolean,
	canResetPassword As Boolean,
	canChangePassword As Boolean
)
protected:
SecurityProviderBase(
	String^ username, 
	bool canRefreshData, 
	bool canResetPassword, 
	bool canChangePassword
)
new : 
        username : string * 
        canRefreshData : bool * 
        canResetPassword : bool * 
        canChangePassword : bool -> SecurityProviderBaseGSF.Security.SecurityProviderBase = function(username, canRefreshData, canResetPassword, canChangePassword);
Parameters
- 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
See Also