WebRequestInformation.Principal 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
웹 요청과 관련된 관리되는 코드 보안 주체의 인스턴스를 가져옵니다.
public:
property System::Security::Principal::IPrincipal ^ Principal { System::Security::Principal::IPrincipal ^ get(); };
public System.Security.Principal.IPrincipal Principal { get; }
member this.Principal : System.Security.Principal.IPrincipal
Public ReadOnly Property Principal As IPrincipal
속성 값
요청 이벤트와 관련된 IPrincipal 인스턴스입니다.
예제
다음 코드 예제에는 웹 요청과 연결 된 보안 주체를 사용 하는 방법을 보여 줍니다.
// Get the request principal.
public string GetRequestPrincipal()
{
// Get the request principal.
return (string.Format(
"Request principal name: {0}",
RequestInformation.Principal.Identity.Name));
}
' Get the request principal.
Public Function GetRequestPrincipal() As String
' Get the request principal.
Return String.Format( _
"Request principal name: {0}", _
RequestInformation.Principal.Identity.Name)
End Function 'GetRequestPrincipal
설명
주 웹 요청을 발급 한 인증 된 엔터티를 가리킵니다.