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