RolePrincipal.ToEncryptedTicket Metodo

Definizione

Restituisce le informazioni sui ruoli memorizzate con l'oggetto RolePrincipal crittografato in base alla proprietà CookieProtectionValue.

public:
 System::String ^ ToEncryptedTicket();
public string ToEncryptedTicket ();
member this.ToEncryptedTicket : unit -> string
Public Function ToEncryptedTicket () As String

Restituisce

String

Informazioni sui ruoli memorizzate con l'oggetto RolePrincipal crittografato in base alla proprietà CookieProtectionValue.

Esempio

Nell'esempio di codice seguente vengono scritti i risultati del ToEncryptedTicket metodo nel cookie dei ruoli.

try
{
  RolePrincipal r = (RolePrincipal)User;
  string eTicket = r.ToEncryptedTicket();
  HttpCookie cookie = new HttpCookie(Roles.CookieName, eTicket);
  cookie.Path = Roles.CookiePath;
  cookie.Expires = r.ExpireDate;
  Response.Cookies.Add(cookie);
}
catch (InvalidCastException)
{
  Response.Write("User is not of type RolePrincipal. Are roles enabled?");
}
Try
  Dim r As RolePrincipal = CType(User, RolePrincipal)
  Dim eTicket As String = r.ToEncryptedTicket()
  Dim cookie As HttpCookie = New HttpCookie(Roles.CookieName, eTicket)
  cookie.Path = Roles.CookiePath
  cookie.Expires = r.ExpireDate
  Response.Cookies.Add(cookie)
Catch e As InvalidCastException
  Response.Write("User is not of type RolePrincipal. Are roles enabled?")
End Try

Commenti

Il valore restituito dal ToEncryptedTicket metodo viene archiviato nel cookie dei ruoli quando CacheRolesInCookie è true.

Si applica a

Vedi anche