다음을 통해 공유


EnumMembers 메서드

SQL Server 인스턴스에 대해 서비스 역할 및 데이터베이스 역할 멤버 목록을 열거합니다.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)

구문

‘선언
Public Function EnumMembers ( _
    roleType As RoleTypes _
) As StringCollection
‘사용 방법
Dim instance As Server
Dim roleType As RoleTypes
Dim returnValue As StringCollection

returnValue = instance.EnumMembers(roleType)
public StringCollection EnumMembers(
    RoleTypes roleType
)
public:
StringCollection^ EnumMembers(
    RoleTypes roleType
)
member EnumMembers : 
        roleType:RoleTypes -> StringCollection 
public function EnumMembers(
    roleType : RoleTypes
) : StringCollection

매개 변수

반환 값

유형: System.Collections.Specialized. . :: . .StringCollection
멤버와 이들이 속하는 역할 목록을 포함하는 StringCollection 개체 값입니다.

주의

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
}