Partager via


WindowsSecurityToken Constructeurs

Définition

Initialise une nouvelle instance de la classe WindowsSecurityToken.

Surcharges

WindowsSecurityToken()

Initialise une nouvelle instance de la classe WindowsSecurityToken.

WindowsSecurityToken(WindowsIdentity)

Initialise une nouvelle instance de la classe WindowsSecurityToken à l'aide de l'utilisateur Windows.

WindowsSecurityToken(WindowsIdentity, String)

Initialise une nouvelle instance de la classe WindowsSecurityToken à l'aide de l'utilisateur Windows.

WindowsSecurityToken(WindowsIdentity, String, String)

Crée une instance de WindowsSecurityToken.

WindowsSecurityToken()

Initialise une nouvelle instance de la classe WindowsSecurityToken.

protected:
 WindowsSecurityToken();
protected WindowsSecurityToken ();
Protected Sub New ()

Remarques

Par défaut, le constructeur ne fait rien.

S’applique à

WindowsSecurityToken(WindowsIdentity)

Initialise une nouvelle instance de la classe WindowsSecurityToken à l'aide de l'utilisateur Windows.

public:
 WindowsSecurityToken(System::Security::Principal::WindowsIdentity ^ windowsIdentity);
public WindowsSecurityToken (System.Security.Principal.WindowsIdentity windowsIdentity);
new System.IdentityModel.Tokens.WindowsSecurityToken : System.Security.Principal.WindowsIdentity -> System.IdentityModel.Tokens.WindowsSecurityToken
Public Sub New (windowsIdentity As WindowsIdentity)

Paramètres

windowsIdentity
WindowsIdentity

WindowsIdentityqui représente un utilisateur Windows.

Exceptions

windowsIdentity a la valeur null.

Remarques

Ce constructeur crée un identificateur unique pour le jeton de sécurité WindowsSecurityToken et affecte cette valeur à la propriété Id.

S’applique à

WindowsSecurityToken(WindowsIdentity, String)

Initialise une nouvelle instance de la classe WindowsSecurityToken à l'aide de l'utilisateur Windows.

public:
 WindowsSecurityToken(System::Security::Principal::WindowsIdentity ^ windowsIdentity, System::String ^ id);
public WindowsSecurityToken (System.Security.Principal.WindowsIdentity windowsIdentity, string id);
new System.IdentityModel.Tokens.WindowsSecurityToken : System.Security.Principal.WindowsIdentity * string -> System.IdentityModel.Tokens.WindowsSecurityToken
Public Sub New (windowsIdentity As WindowsIdentity, id As String)

Paramètres

windowsIdentity
WindowsIdentity

WindowsIdentityqui représente un utilisateur Windows.

id
String

Identificateur unique du jeton de sécurité.

Exceptions

windowsIdentity a la valeur null.

-ou-

id a la valeur null.

Remarques

Ce constructeur appelle la méthode Initialize pour initialiser les propriétés de cette classe.

S’applique à

WindowsSecurityToken(WindowsIdentity, String, String)

Crée une instance de WindowsSecurityToken.

public:
 WindowsSecurityToken(System::Security::Principal::WindowsIdentity ^ windowsIdentity, System::String ^ id, System::String ^ authenticationType);
public WindowsSecurityToken (System.Security.Principal.WindowsIdentity windowsIdentity, string id, string authenticationType);
new System.IdentityModel.Tokens.WindowsSecurityToken : System.Security.Principal.WindowsIdentity * string * string -> System.IdentityModel.Tokens.WindowsSecurityToken
Public Sub New (windowsIdentity As WindowsIdentity, id As String, authenticationType As String)

Paramètres

windowsIdentity
WindowsIdentity

WindowsIdentityqui représente un utilisateur Windows.

id
String

Identificateur unique du jeton de sécurité.

authenticationType
String

Type d'authentification du jeton de sécurité.

S’applique à