Freigeben über


WebRequestInformation.Principal Eigenschaft

Definition

Ruft die Instanz des der Webanforderung zugeordneten Prinzipals für verwalteten Code ab.

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

Eigenschaftswert

IPrincipal

Die IPrincipal-Instanz, die dem Anforderungsereignis zugeordnet ist.

Beispiele

Im folgenden Codebeispiel wird gezeigt, wie der Prinzipal verwendet wird, der der Webanforderung zugeordnet ist.

// 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

Hinweise

Der Prinzipal bezieht sich auf die authentifizierte Entität, die die Webanforderung ausgestellt hat.

Gilt für