WebRequestInformation.Principal Propriedade
Definição
Obtém a instância da entidade de segurança de código gerenciada associada com a solicitação da Web.Gets the instance of the managed-code principal associated with the Web request.
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
Valor da propriedade
A IPrincipal instância que está associada ao evento de solicitação.The IPrincipal instance that is associated with the request event.
Exemplos
O exemplo de código a seguir mostra como usar a entidade de segurança associada à solicitação da Web.The following code example shows how to use the principal associated with the Web request.
// 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
Comentários
A entidade de segurança refere-se à entidade autenticada que emitiu a solicitação da Web.The principal refers to the authenticated entity that issued the Web request.