Share via


SoapBase64Binary.Value Propiedad

Definición

Obtiene o establece la representación binaria de un número de 64 bits.

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

Valor de propiedad

Byte[]

Matriz de tipo Byte que contiene la representación binaria de un número de 64 bits.

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad Value. Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase 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();

Se aplica a