Метод 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
Параметры
- roleType
Тип: Microsoft.SqlServer.Management.Smo. . :: . .RoleTypes
Значение объекта RoleTypes, указывающее тип роли, для которой следует ограничить результаты.
Возвращаемое значение
Тип: 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
}
См. также