SoapYearMonth Class
.NET Framework 3.0
Wraps an XSD gYearMonth type.
Namespace: System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapYearMonth Implements ISoapXsd 'Usage Dim instance As SoapYearMonth
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class SoapYearMonth implements ISoapXsd
SerializableAttribute ComVisibleAttribute(true) public final class SoapYearMonth implements ISoapXsd
Not applicable.
The following code example demonstrates using the SoapYearMonth class to wrap the XSD gYearMonth type.
import System.*;
import System.Runtime.Remoting.Metadata.W3cXsd2001.*;
public class Demo
{
public static void main(String[] args)
{
// Parse an XSD gYearMonth to create a SoapYearMonth object.
// The time zone of this object is -08:00.
String xsdYearMonth = "2003-11-08:00";
SoapYearMonth yearMonth = SoapYearMonth.Parse(xsdYearMonth);
// Display the yearMonth in XSD format.
Console.WriteLine("The yearMonth in XSD format is {0}.",
yearMonth.ToString());
// Display the XSD type string of this SoapYearMonth object.
Console.WriteLine("The XSD type of the SoapYearMonth object is {0}.",
yearMonth.GetXsdType());
// Display the value of the SoapYearMonth object.
Console.WriteLine("The value of the SoapYearMonth object is {0}.",
yearMonth.get_Value());
// Display the sign of the SoapYearMonth object.
Console.WriteLine("The sign of the SoapYearMonth object is {0}.",
System.Convert.ToString(yearMonth.get_Sign()));
// Display the XSD type string of the SoapYearMonth class.
Console.WriteLine("The XSD type of the class SoapYearMonth is {0}.",
System.Convert.ToString(SoapYearMonth.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: