'DeclarationFunction GetSecurityRoleIdList( _ ByVal securityId As String, _ ByRef securityRoleIds As IReadOnlyList(Of String) _ ) As Boolean
'UsageDim instance As IReadOnlyNameAndPasswordUserManager Dim securityId As String Dim securityRoleIds As IReadOnlyList(Of String) Dim value As Boolean value = instance.GetSecurityRoleIdList(securityId, securityRoleIds)
bool GetSecurityRoleIdList( string securityId, out IReadOnlyList<string> securityRoleIds )
bool GetSecurityRoleIdList( String^ securityId, [Out] IReadOnlyList<String^>^ securityRoleIds )
Parameters
- securityId
- The security ID of the user.
The value of this parameter cannot be
null(Nothingin Visual Basic). - securityRoleIds
- When this method returns, contains the list of security role IDs if the user was found; otherwise,
null.The value of this parameter can be
null(Nothingin Visual Basic).The individual elements of the parameter value cannot be
null(Nothingin Visual Basic).
Return Value
true if the user was found; otherwise, false.