Server.EnumMembers Method (RoleTypes)

 

Applies To: SQL Server 2016 Preview

Enumerates a list of members of server roles and database roles on the instance of SQL Server.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

public StringCollection EnumMembers(
    RoleTypes roleType
)
public:
StringCollection^ EnumMembers(
    RoleTypes roleType
)
member EnumMembers : 
        roleType:RoleTypes -> StringCollection
Public Function EnumMembers (
    roleType As RoleTypes
) As StringCollection

Parameters

Return Value

Type: System.Collections.Specialized.StringCollection

A StringCollection object value that contains a list of members and the roles to which they belong.

Remarks

Use this method to obtain a list of the members of server roles, database roles, or both.

Examples

Legacy Code Example

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
}

See Also

Server Class
Microsoft.SqlServer.Management.Smo Namespace
Calling Methods

Unable to find linked topic '776ac273-bbe5-45e2-8bc8-a6f2b9cac03a'.

Return to top