CngProperty コンストラクター

定義

CngProperty クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
CngProperty(String, Byte[], CngPropertyOptions)

CngProperty 構造体の新しいインスタンスを初期化します。

CngProperty(String, ReadOnlySpan<Byte>, CngPropertyOptions)

CngProperty(String, Byte[], CngPropertyOptions)

ソース:
CngProperty.cs
ソース:
CngProperty.cs
ソース:
CngProperty.cs
ソース:
CngProperty.cs
ソース:
CngProperty.cs

CngProperty 構造体の新しいインスタンスを初期化します。

public:
 CngProperty(System::String ^ name, cli::array <System::Byte> ^ value, System::Security::Cryptography::CngPropertyOptions options);
public CngProperty(string name, byte[]? value, System.Security.Cryptography.CngPropertyOptions options);
public CngProperty(string name, byte[] value, System.Security.Cryptography.CngPropertyOptions options);
new System.Security.Cryptography.CngProperty : string * byte[] * System.Security.Cryptography.CngPropertyOptions -> System.Security.Cryptography.CngProperty
Public Sub New (name As String, value As Byte(), options As CngPropertyOptions)

パラメーター

name
String

初期化するプロパティ名。

value
Byte[]

初期化するプロパティ値。

options
CngPropertyOptions

プロパティの格納方法を指定する列挙値のビットごとの組み合わせ。

例外

namenullです。

注釈

特定の CngPropertyOptions フラグセットと共に格納されるプロパティは、取得時に同じフラグセットを必要とします。

適用対象

CngProperty(String, ReadOnlySpan<Byte>, CngPropertyOptions)

ソース:
CngProperty.cs
public:
 CngProperty(System::String ^ name, ReadOnlySpan<System::Byte> value, System::Security::Cryptography::CngPropertyOptions options);
public CngProperty(string name, ReadOnlySpan<byte> value, System.Security.Cryptography.CngPropertyOptions options);
new System.Security.Cryptography.CngProperty : string * ReadOnlySpan<byte> * System.Security.Cryptography.CngPropertyOptions -> System.Security.Cryptography.CngProperty
Public Sub New (name As String, value As ReadOnlySpan(Of Byte), options As CngPropertyOptions)

パラメーター

name
String

適用対象