共用方式為


ProtectedKey 建構函式

定義

初始化 ProtectedKey 類別的新執行個體。

多載

ProtectedKey(Byte[])

使用無加密的方式,初始化 ProtectedKey 類別的新執行個體。

ProtectedKey(Byte[], EncryptingCredentials)

使用指定的加密認證,初始化 ProtectedKey 類別的新執行個體。

ProtectedKey(Byte[])

使用無加密的方式,初始化 ProtectedKey 類別的新執行個體。

public:
 ProtectedKey(cli::array <System::Byte> ^ secret);
public ProtectedKey (byte[] secret);
new System.IdentityModel.Protocols.WSTrust.ProtectedKey : byte[] -> System.IdentityModel.Protocols.WSTrust.ProtectedKey
Public Sub New (secret As Byte())

參數

secret
Byte[]

包含受保護金鑰內容之 Byte 的陣列。

備註

使用此建構函式以純文字傳送金鑰數據。 屬性WrappingCredentials會在新的 ProtectedKey 實體中設定為 null

適用於

ProtectedKey(Byte[], EncryptingCredentials)

使用指定的加密認證,初始化 ProtectedKey 類別的新執行個體。

public:
 ProtectedKey(cli::array <System::Byte> ^ secret, System::IdentityModel::Tokens::EncryptingCredentials ^ wrappingCredentials);
public ProtectedKey (byte[] secret, System.IdentityModel.Tokens.EncryptingCredentials wrappingCredentials);
new System.IdentityModel.Protocols.WSTrust.ProtectedKey : byte[] * System.IdentityModel.Tokens.EncryptingCredentials -> System.IdentityModel.Protocols.WSTrust.ProtectedKey
Public Sub New (secret As Byte(), wrappingCredentials As EncryptingCredentials)

參數

secret
Byte[]

包含受保護金鑰內容之 Byte 的陣列。

wrappingCredentials
EncryptingCredentials

包含用來加密金鑰內容之認證的 EncryptingCredentials

備註

使用此建構函式來傳送加密的金鑰數據。

適用於