SoapBase64Binary.Value 속성

정의

64비트 숫자의 이진 표현을 가져오거나 설정합니다.

public:
 property cli::array <System::Byte> ^ Value { cli::array <System::Byte> ^ get(); void set(cli::array <System::Byte> ^ value); };
public byte[] Value { get; set; }
member this.Value : byte[] with get, set
Public Property Value As Byte()

속성 값

Byte[]

64비트 숫자의 이진 표현이 들어 있는 Byte 배열입니다.

예제

다음 코드 예제에서는 Value 속성을 사용하는 방법을 보여 줍니다. 이 코드 예제는 제공 된 큰 예제의 일부는 SoapBase64Binary 클래스입니다.

// Print the value of the SoapBase64Binary object.
Console::Write( L"base64Binary.Value contains:" );
for ( int i = 0; i < base64Binary->Value->Length; ++i )
{
   Console::Write( L" {0}", base64Binary->Value[ i ] );

}
Console::WriteLine();
// Print the value of the SoapBase64Binary object.
Console.Write("base64Binary.Value contains:");
for (int i = 0 ; i < base64Binary.Value.Length ; ++i)
{
    Console.Write(" " + base64Binary.Value[i]);
}
Console.WriteLine();

적용 대상