UseKey 构造函数

定义

初始化 UseKey 类的新实例。

重载

UseKey()

初始化 UseKey 类的新实例。

UseKey(SecurityKeyIdentifier)

使用指定的安全密钥标识符初始化 UseKey 类的新实例。

UseKey(SecurityToken)

使用指定的安全标记初始化 UseKey 类的新实例。

UseKey(SecurityKeyIdentifier, SecurityToken)

使用指定的安全密钥标识符和所有者安全令牌类型初始化 UseKey 类的新实例。

UseKey()

初始化 UseKey 类的新实例。

public:
 UseKey();
public UseKey ();
Public Sub New ()

注解

扩展性的构造函数。

适用于

UseKey(SecurityKeyIdentifier)

使用指定的安全密钥标识符初始化 UseKey 类的新实例。

public:
 UseKey(System::IdentityModel::Tokens::SecurityKeyIdentifier ^ ski);
public UseKey (System.IdentityModel.Tokens.SecurityKeyIdentifier ski);
new System.IdentityModel.Protocols.WSTrust.UseKey : System.IdentityModel.Tokens.SecurityKeyIdentifier -> System.IdentityModel.Protocols.WSTrust.UseKey
Public Sub New (ski As SecurityKeyIdentifier)

参数

ski
SecurityKeyIdentifier

SecurityKeyIdentifier 表示应使用的现有密匙。

注解

如果请求者知道如何将令牌转换为安全密钥标识符,或者如果令牌已是安全密钥标识符,请使用此构造函数。

在新TokenUseKey实例中, 属性设置为 null

适用于

UseKey(SecurityToken)

使用指定的安全标记初始化 UseKey 类的新实例。

public:
 UseKey(System::IdentityModel::Tokens::SecurityToken ^ token);
public UseKey (System.IdentityModel.Tokens.SecurityToken token);
new System.IdentityModel.Protocols.WSTrust.UseKey : System.IdentityModel.Tokens.SecurityToken -> System.IdentityModel.Protocols.WSTrust.UseKey
Public Sub New (token As SecurityToken)

参数

token
SecurityToken

SecurityToken 表示应使用的现有密匙。

注解

在新SecurityKeyIdentifierUseKey实例中, 属性设置为 null

适用于

UseKey(SecurityKeyIdentifier, SecurityToken)

使用指定的安全密钥标识符和所有者安全令牌类型初始化 UseKey 类的新实例。

public:
 UseKey(System::IdentityModel::Tokens::SecurityKeyIdentifier ^ ski, System::IdentityModel::Tokens::SecurityToken ^ token);
public UseKey (System.IdentityModel.Tokens.SecurityKeyIdentifier ski, System.IdentityModel.Tokens.SecurityToken token);
new System.IdentityModel.Protocols.WSTrust.UseKey : System.IdentityModel.Tokens.SecurityKeyIdentifier * System.IdentityModel.Tokens.SecurityToken -> System.IdentityModel.Protocols.WSTrust.UseKey
Public Sub New (ski As SecurityKeyIdentifier, token As SecurityToken)

参数

ski
SecurityKeyIdentifier

SecurityKeyIdentifier 表示应使用的现有密匙。

token
SecurityToken

SecurityToken 表示应使用的现有密匙。

注解

使用此构造函数将详细信息传递给安全令牌服务, (序列化程序) STS。

适用于