SoapMonth Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Wraps an XSD gMonth
type.
public ref class SoapMonth sealed : System::Runtime::Remoting::Metadata::W3cXsd2001::ISoapXsd
[System.Serializable]
public sealed class SoapMonth : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class SoapMonth : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd
[<System.Serializable>]
type SoapMonth = class
interface ISoapXsd
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type SoapMonth = class
interface ISoapXsd
Public NotInheritable Class SoapMonth
Implements ISoapXsd
- Inheritance
-
SoapMonth
- Attributes
- Implements
Examples
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.
using namespace System;
using namespace System::Runtime::Remoting::Metadata::W3cXsd2001;
int main()
{
// Parse an XSD gMonth to create a SoapMonth object.
// The timezone 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 );
// Print the XSD type string of this particular SoapMonth object.
Console::WriteLine( "The XSD type of the SoapMonth instance is {0}.",
month->GetXsdType() );
// Print the value of the SoapMonth object.
Console::WriteLine( "The value of the SoapMonth instance is {0}.",
month->Value );
// Print the XSD type string of the SoapMonth class.
Console::WriteLine( "The XSD type of the class SoapMonth is {0}.",
SoapMonth::XsdType );
}
using System;
using 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.Value);
// Print the XSD type string of the SoapMonth class.
Console.WriteLine("The XSD type of the class SoapMonth is {0}.",
SoapMonth.XsdType);
}
}
Remarks
For more information about XSD data types, see XML Data Types Reference.
Constructors
SoapMonth() |
Initializes a new instance of the SoapMonth class. |
SoapMonth(DateTime) |
Initializes a new instance of the SoapMonth class with a specified DateTime object. |
Properties
Value |
Gets or sets the date and time of the current instance. |
XsdType |
Gets the XML Schema definition language (XSD) of the current SOAP type. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
GetXsdType() |
Returns the XML Schema definition language (XSD) of the current SOAP type. |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
Parse(String) | |
ToString() |