Propriété FixedServerRoles

Gets the fixed server role associated with the referenced connection.

Espace de noms :  Microsoft.SqlServer.Management.Common
Assembly :  Microsoft.SqlServer.ConnectionInfo (en Microsoft.SqlServer.ConnectionInfo.dll)

Syntaxe

'Déclaration
Public ReadOnly Property FixedServerRoles As FixedServerRoles
    Get
'Utilisation
Dim instance As ServerConnection
Dim value As FixedServerRoles

value = instance.FixedServerRoles
public FixedServerRoles FixedServerRoles { get; }
public:
property FixedServerRoles FixedServerRoles {
    FixedServerRoles get ();
}
member FixedServerRoles : FixedServerRoles
function get FixedServerRoles () : FixedServerRoles

Valeur de propriété

Type : Microsoft.SqlServer.Management.Common. . :: . .FixedServerRoles
A FixedServerRoles object value that specifies the fixed server role associated with the referenced connection.

Exemples

C#

ServerConnection conn = new ServerConnection();
Console.WriteLine(conn.FixedServerRoles.ToString());

PowerShell

$conn = new-object Microsoft.SqlServer.Management.Common.ServerConnection
Write-Host $conn.FixedServerRoles