Freigeben über


ServerConnection.TrueLogin-Eigenschaft

Gets the current logon record name used by the referenced connection.

Namespace:  Microsoft.SqlServer.Management.Common
Assembly:  Microsoft.SqlServer.ConnectionInfo (in Microsoft.SqlServer.ConnectionInfo.dll)

Syntax

'Declaration
Public ReadOnly Property TrueLogin As String 
    Get
'Usage
Dim instance As ServerConnection 
Dim value As String 

value = instance.TrueLogin
public string TrueLogin { get; }
public:
property String^ TrueLogin {
    String^ get ();
}
member TrueLogin : string
function get TrueLogin () : String

Eigenschaftswert

Typ: System.String
A String value that specifies the current logon record name used by the referenced connection.

Beispiele

C#

ServerConnection conn = new ServerConnection();
Console.WriteLine(conn.TrueLogin);

PowerShell

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

Siehe auch

Verweis

ServerConnection Klasse

Microsoft.SqlServer.Management.Common-Namespace