'DeclarationPublic Function New( _ ByVal securityId As String, _ ByVal userName As String, _ ByVal enabled As Boolean, _ ByVal securityRoleIds As IEnumerable(Of String) _ )
'UsageDim securityId As String Dim userName As String Dim enabled As Boolean Dim securityRoleIds As IEnumerable(Of String) Dim instance As New UserRecordInfo(securityId, userName, enabled, securityRoleIds)
public UserRecordInfo( string securityId, string userName, bool enabled, IEnumerable<string> securityRoleIds )
public: UserRecordInfo( String^ securityId, String^ userName, bool enabled, IEnumerable<String^>^ securityRoleIds )
Parameters
- securityId
- The security ID of the user.
The value of this parameter cannot be
null(Nothingin Visual Basic). - userName
- The username.
The value of this parameter cannot be
null(Nothingin Visual Basic). - enabled
- Whether the user is enabled.
- securityRoleIds
- The security role IDs assigned to the user.
The value of this parameter cannot be
null(Nothingin Visual Basic).The individual elements of the parameter value cannot be
null(Nothingin Visual Basic).