CngProperty 생성자

정의

오버로드

CngProperty(String, Byte[], CngPropertyOptions)

Source:
CngProperty.cs
Source:
CngProperty.cs
Source:
CngProperty.cs
Source:
CngProperty.cs
Source:
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)

Source:
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

적용 대상