SoapTime Class
.NET Framework 3.0
Wraps an XSD time type.
Namespace: System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapTime Implements ISoapXsd 'Usage Dim instance As SoapTime
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class SoapTime implements ISoapXsd
SerializableAttribute ComVisibleAttribute(true) public final class SoapTime implements ISoapXsd
Not applicable.
The following code example demonstrates using the SoapTime class to wrap an XSD time type.
import System.*;
import System.Runtime.Remoting.Metadata.W3cXsd2001.*;
public class Demo
{
public static void main(String[] args)
{
// Parse an XSD gTime to create a SoapTime object.
// The time zone of this object is the current time zone.
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.ToString());
// Display the XSD type string of this particular SoapTime object.
Console.WriteLine("The XSD type of the SoapTime object is {0}.",
time.GetXsdType());
// Display the value of the SoapTime object.
Console.WriteLine("The value of the SoapTime object is {0}.",
time.get_Value());
// Display the XSD type string of the SoapTime class.
Console.WriteLine("The XSD type of the class SoapTime is {0}.",
System.Convert.ToString(SoapTime.get_XsdType()));
} //main
} //Demo
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: