| 
            
              AdoSecurityProvider(String, Boolean, Boolean, Boolean) Constructor
             | 
          
        
        
        
        Namespace: GSF.SecurityAssembly: GSF.Security (in GSF.Security.dll) Version: 2.4.257-beta
Syntaxprotected AdoSecurityProvider(
	string username,
	bool canRefreshData,
	bool canResetPassword,
	bool canChangePassword
)
Protected Sub New ( 
	username As String,
	canRefreshData As Boolean,
	canResetPassword As Boolean,
	canChangePassword As Boolean
)
protected:
AdoSecurityProvider(
	String^ username, 
	bool canRefreshData, 
	bool canResetPassword, 
	bool canChangePassword
)
new : 
        username : string * 
        canRefreshData : bool * 
        canResetPassword : bool * 
        canChangePassword : bool -> AdoSecurityProviderGSF.Security.AdoSecurityProvider = 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 back-end 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