SoapTime Class

 

Wraps an XSD time type.

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

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

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

NameDescription
System_CAPS_pubmethodSoapTime()

Initializes a new instance of the SoapTime class.

System_CAPS_pubmethodSoapTime(DateTime)

Initializes a new instance of the SoapTime class with a specified DateTime object.

NameDescription
System_CAPS_pubpropertyValue

Gets or sets the date and time of the current instance.

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 SoapTime object.

System_CAPS_pubmethodToString()

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

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

The following code example demonstrates using the SoapTime class to wrap an XSD time type.

using namespace System;
using namespace System::Runtime::Remoting::Metadata::W3cXsd2001;

int main()
{
   // Parse an XSD gTime to create a SoapTime object.
   // The timezone of this object is the current timezone.
   String^ xsdTime = "12:13:14.123Z";
   SoapTime^ time = SoapTime::Parse( xsdTime );

   // Display the time in XSD format. 
   Console::WriteLine( "The time in XSD format is {0}.",
      time );

   // Display the XSD type string of this particular SoapTime object.
   Console::WriteLine( "The XSD type of the SoapTime instance is {0}.",
      time->GetXsdType() );

   // Display the value of the SoapTime object.
   Console::WriteLine( "The value of the SoapTime instance is {0}.",
      time->Value );

   // Display the XSD type string of the SoapTime class.
   Console::WriteLine( "The XSD type of the class SoapTime is {0}.",
      SoapTime::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: