共用方式為


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
}