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