ServerConnection.UserProfile 속성
참조된 연결과 관련된 사용자 프로필을 가져옵니다.
네임스페이스: Microsoft.SqlServer.Management.Common
어셈블리: Microsoft.SqlServer.ConnectionInfo(Microsoft.SqlServer.ConnectionInfo.dll)
구문
‘선언
Public ReadOnly Property UserProfile As ServerUserProfiles
Get
‘사용 방법
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
속성 값
유형: Microsoft.SqlServer.Management.Common.ServerUserProfiles
참조된 연결과 관련된 사용자 프로필을 지정하는 ServerUserProfiles 개체 값입니다.
예
C#
ServerConnection conn = new ServerConnection();
Console.WriteLine(conn.UserProfile.ToString());
PowerShell
$conn = new-object Microsoft.SqlServer.Management.Common.ServerConnection
Write-Host $conn.UserProfile