SoapBase64Binary Class

 

Wraps an XSD base64Binary type.

Namespace:   System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly:  mscorlib (in mscorlib.dll)

System::Object
  System.Runtime.Remoting.Metadata.W3cXsd2001::SoapBase64Binary

[SerializableAttribute]
[ComVisibleAttribute(true)]
public ref class SoapBase64Binary sealed : ISoapXsd

NameDescription
System_CAPS_pubmethodSoapBase64Binary()

Initializes a new instance of the SoapBase64Binary class.

System_CAPS_pubmethodSoapBase64Binary(array<Byte>^)

Initializes a new instance of the SoapBase64Binary class with the binary representation of a 64-bit number.

NameDescription
System_CAPS_pubpropertyValue

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

System_CAPS_pubpropertySystem_CAPS_staticXsdType

Gets the XML Schema definition language (XSD) of the current SOAP type.

NameDescription
System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodGetXsdType()

Returns the XML Schema definition language (XSD) of the current SOAP type.

System_CAPS_pubmethodSystem_CAPS_staticParse(String^)

Converts the specified String into a SoapBase64Binary object.

System_CAPS_pubmethodToString()

Returns Value as a String.(Overrides Object::ToString().)

For more information about XSD data types, see the "XML Data Types Reference" in the MSDN Library at http://msdn.microsoft.com/library.

The following code example shows how to use the members in the SoapBase64Binary class to convert between a SoapBase64Binary object and an XSD base64Binary string.

#using <System.dll>
#using <System.Runtime.Remoting.dll>
using namespace System;
using namespace System::Runtime::Remoting::Metadata::W3cXsd2001;

int main()
{
   // Parse an XSD formatted string to create a SoapBase64Binary object.
   // The string "AgMFBws=" is byte[]{ 2, 3, 5, 7, 11 } expressed in
   // Base 64 format.
   String^ xsdBase64Binary = L"AgMFBws=";
   SoapBase64Binary^ base64Binary = SoapBase64Binary::Parse( xsdBase64Binary );

   // Print the value of the SoapBase64Binary object in XSD format.
      Console::WriteLine( L"The SoapBase64Binary object in XSD format is {0}.",
         base64Binary );

   // Print the XSD type string of the SoapBase64Binary object.
   Console::WriteLine( L"The XSD type of the SoapBase64Binary "
      L"object is {0}.", base64Binary->GetXsdType() );   

   // 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 XSD type string of the SoapBase64Binary class.
   Console::WriteLine( L"The XSD type of the class SoapBase64Binary "
      L"is {0}.", SoapBase64Binary::XsdType );
}

.NET Framework
Available since 1.1

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: