SoapDate Class
.NET Framework 2.0
Wraps an XSD date type.
Namespace: System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapDate Implements ISoapXsd 'Usage Dim instance As SoapDate
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class SoapDate implements ISoapXsd
SerializableAttribute ComVisibleAttribute(true) public final class SoapDate implements ISoapXsd
The following code example demonstrates using the SoapDate class to wrap an XML date type.
import System.*;
import System.Runtime.Remoting.Metadata.W3cXsd2001.*;
public class Demo
{
public static void main(String[] args)
{
// Parse an XSD date to create a SoapDate object.
String xsdDate = "2003-02-04";
SoapDate date = SoapDate.Parse(xsdDate);
// Serialize a DateTime object as an XSD date string.
Console.WriteLine("The date in XSD format is {0}.",
System.Convert.ToString(date.ToString()));
// Print the XSD type string of this particular SoapDate object.
Console.WriteLine("The XSD type of the SoapDate object is {0}.",
System.Convert.ToString(date.GetXsdType()));
// Print the value of the SoapDate object.
Console.WriteLine("The value of the SoapDate object is {0}.",
System.Convert.ToString(date.get_Value()));
// Print the sign of the SoapDate object.
Console.WriteLine("The sign of the SoapDate object is {0}.",
System.Convert.ToString(date.get_Sign()));
// Print the XSD type string of the SoapDate class.
Console.WriteLine("The XSD type of SoapDate is {0}.",
System.Convert.ToString(SoapDate.get_XsdType()));
} //main
} //Demo
Windows 98, Windows 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 .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: