SoapBase64Binary.Value Property

Definition

Gets or sets the binary representation of a 64-bit number.

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()

Property Value

Byte[]

A Byte array that contains the binary representation of a 64-bit number.

Examples

The following code example shows how to use the Value property. This code example is part of a larger example that is provided for the SoapBase64Binary class.

// 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();

Applies to