SoapMonth Class
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
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);
}
}
For more information about XSD data types, see XML Data Types Reference.
Soap |
Initializes a new instance of the SoapMonth class. |
Soap |
Initializes a new instance of the SoapMonth class with a specified DateTime object. |
Value |
Gets or sets the date and time of the current instance. |
Xsd |
Gets the XML Schema definition language (XSD) of the current SOAP type. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
Get |
Serves as the default hash function. (Inherited from Object) |
Get |
Gets the Type of the current instance. (Inherited from Object) |
Get |
Returns the XML Schema definition language (XSD) of the current SOAP type. |
Memberwise |
Creates a shallow copy of the current Object. (Inherited from Object) |
Parse(String) | |
To |
Producto | Versiones |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Comentarios de .NET
.NET es un proyecto de código abierto. Seleccione un vínculo para proporcionar comentarios: