SoapDay 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 gDay
type.
public ref class SoapDay sealed : System::Runtime::Remoting::Metadata::W3cXsd2001::ISoapXsd
[System.Serializable]
public sealed class SoapDay : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class SoapDay : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd
[<System.Serializable>]
type SoapDay = class
interface ISoapXsd
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type SoapDay = class
interface ISoapXsd
Public NotInheritable Class SoapDay
Implements ISoapXsd
- Inheritance
-
SoapDay
- Attributes
- Implements
Examples
The following code example shows how to use the members in the SoapDay class to convert between a SoapDay object and an XSD gDay
string.
using namespace System;
using namespace System::Runtime::Remoting::Metadata::W3cXsd2001;
int main()
{
// Parse an XSD gDay to create a SoapDay object.
// The time zone of this object is +08:00.
String^ xsdDay = "---30+08:00";
SoapDay^ day = SoapDay::Parse( xsdDay );
// Display the day in XSD format.
Console::WriteLine( "The day in XSD format is {0}.",
day );
// Display the XSD type string of this particular SoapDay object.
Console::WriteLine( "The XSD type of the SoapDay instance is {0}.",
day->GetXsdType() );
// Display the value of the SoapDay object.
Console::WriteLine( "The value of the SoapDay instance is {0}.",
day->Value );
// Display the XSD type string of the SoapDay class.
Console::WriteLine( "The XSD type of the class SoapDay is {0}.",
SoapDay::XsdType );
}
using System;
using System.Runtime.Remoting.Metadata.W3cXsd2001;
public class Demo
{
public static void Main(string[] args)
{
// Parse an XSD gDay to create a SoapDay object.
// The time zone of this object is +08:00.
string xsdDay = "---30+08:00";
SoapDay day = SoapDay.Parse(xsdDay);
// Display the day in XSD format.
Console.WriteLine("The day in XSD format is {0}.",
day.ToString());
// Display the XSD type string of this particular SoapDay object.
Console.WriteLine("The XSD type of the SoapDay object is {0}.",
day.GetXsdType());
// Display the value of the SoapDay object.
Console.WriteLine("The value of the SoapDay object is {0}.",
day.Value);
// Display the XSD type string of the SoapDay class.
Console.WriteLine("The XSD type of the class SoapDay is {0}.",
SoapDay.XsdType);
}
}
Remarks
For more information about XSD data types, see XML Data Types Reference.
Constructors
SoapDay() |
Initializes a new instance of the SoapDay class. |
SoapDay(DateTime) |
Initializes a new instance of the SoapDay 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() |