CipherData.CipherValue 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
<CipherValue>
요소를 가져오거나 설정합니다.
public:
property cli::array <System::Byte> ^ CipherValue { cli::array <System::Byte> ^ get(); void set(cli::array <System::Byte> ^ value); };
public byte[]? CipherValue { get; set; }
public byte[] CipherValue { get; set; }
member this.CipherValue : byte[] with get, set
Public Property CipherValue As Byte()
속성 값
Byte[]
<CipherValue>
요소를 나타내는 바이트 배열입니다.
예외
CipherValue 속성이 null
로 설정된 경우
CipherValue 속성이 두 번 이상 설정된 경우
예제
다음 코드 예제에서는 CipherData 클래스의 새 인스턴스를 만드는 방법을 보여 줍니다.
// Create a new CipherData object using a byte array to represent encrypted data.
array<Byte>^sampledata = gcnew array<Byte>(8);
CipherData ^ cd = gcnew CipherData( sampledata );
// Create a new CipherData object using a byte array to represent encrypted data.
Byte[] sampledata = new byte[8];
CipherData cd = new CipherData(sampledata);
' Create a new CipherData object using a byte array to represent encrypted data.
Dim sampledata(7) As Byte
Dim cd As New CipherData(sampledata)
설명
값은 암호화 된 데이터입니다.
참고
<CipherData>
요소 중 하나를 포함할 수 있습니다를 CipherReference 또는 CipherValue 자식 요소가 하나만 있습니다. A CryptographicException 둘 다에 할당 된 경우 throw 되는 CipherData 개체입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET