Udostępnij za pośrednictwem


Właściwość ServerConnection.UserProfile

Pobiera profilu użytkownika, skojarzone z połączeniem odwołanie.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Common
Zestaw:  Microsoft.SqlServer.ConnectionInfo (w Microsoft.SqlServer.ConnectionInfo.dll)

Składnia

'Deklaracja
Public ReadOnly Property UserProfile As ServerUserProfiles
    Get
'Użycie
Dim instance As ServerConnection
Dim value As ServerUserProfiles

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

Wartość właściwości

Typ: Microsoft.SqlServer.Management.Common.ServerUserProfiles
A ServerUserProfiles wartość obiektu, który określa profil użytkownika, skojarzone z odwołania połączenia.

Przykłady

C#

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

PowerShell

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