Server.EnumMembers Method (RoleTypes)
Enumerates a list of members of server roles and database roles on the instance of SQL Server.
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Parameters
- roleType
-
Type:
Microsoft.SqlServer.Management.Smo.RoleTypes
A RoleTypes object value that specifies the type of role of which to limit the results.
Return Value
Type: System.Collections.Specialized.StringCollectionA StringCollection object value that contains a list of members and the roles to which they belong.
Use this method to obtain a list of the members of server roles, database roles, or both.
C#
Server srv = new Server("(local)"); StringCollection sc = srv.EnumMembers(RoleTypes.All); foreach (String s in sc) { Console.WriteLine(s); }
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)") $sc = $srv.EnumMembers([Microsoft.SqlServer.Management.Smo.RoleTypes]::All) foreach ($s in $sc) { Write-Host $s }
Show: