SoapMonthDay Class
.NET Framework 2.0
Wraps an XSD gMonthDay type.
Namespace: System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapMonthDay Implements ISoapXsd 'Usage Dim instance As SoapMonthDay
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class SoapMonthDay implements ISoapXsd
SerializableAttribute ComVisibleAttribute(true) public final class SoapMonthDay implements ISoapXsd
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 SoapMonthDay class to convert between a SoapMonthDay object and an XSD gMonthDay string.
import System.*;
import System.Runtime.Remoting.Metadata.W3cXsd2001.*;
public class Demo
{
public static void main(String[] args)
{
// Parse an XSD gMonthDay to create a SoapMonthDay object.
// Parse the representation for February 21, in the UTC+8 time zone.
String xsdMonthDay = "--02-21+08:00";
SoapMonthDay monthDay = SoapMonthDay.Parse(xsdMonthDay);
// Print the monthDay in XSD format.
Console.WriteLine("The SoapMonthDay object in XSD format is {0}.",
monthDay.ToString());
// Print the XSD type string of this particular SoapMonthDay object.
Console.WriteLine("The XSD type of the SoapMonthDay object is {0}.",
monthDay.GetXsdType());
// Print the value of the SoapMonthDay object.
Console.WriteLine("The value of the SoapMonthDay object is {0}.",
monthDay.get_Value());
// Print the XSD type string of the SoapMonthDay class.
Console.WriteLine("The XSD type of the class SoapMonthDay is {0}.",
SoapMonthDay.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: