SoapDay Klasse
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Umschließt einen XSD-gDay
-Typ.
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
- Vererbung
-
SoapDay
- Attribute
- Implementiert
Beispiele
Im folgenden Codebeispiel wird veranschaulicht, wie die Member in der SoapDay -Klasse verwendet werden, um zwischen einem SoapDay Objekt und einer XSD-Zeichenfolge gDay
zu konvertieren.
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);
}
}
Hinweise
Weitere Informationen zu XSD-Datentypen finden Sie unter XML-Datentypenreferenz.
Konstruktoren
SoapDay() |
Initialisiert eine neue Instanz der SoapDay-Klasse. |
SoapDay(DateTime) |
Initialisiert eine neue Instanz der SoapDay-Klasse mit einem angegebenen DateTime-Objekt. |
Eigenschaften
Value |
Ruft das Datum und die Uhrzeit der aktuellen Instanz ab oder legt diese fest. |
XsdType |
Ruft die XSD (XML Schema Definition) des aktuellen SOAP-Typs ab. |
Methoden
Equals(Object) |
Bestimmt, ob das angegebene Objekt gleich dem aktuellen Objekt ist. (Geerbt von Object) |
GetHashCode() |
Fungiert als Standardhashfunktion. (Geerbt von Object) |
GetType() |
Ruft den Type der aktuellen Instanz ab. (Geerbt von Object) |
GetXsdType() |
Gibt die XSD (XML Schema Definition) des aktuellen SOAP-Typs zurück. |
MemberwiseClone() |
Erstellt eine flache Kopie des aktuellen Object. (Geerbt von Object) |
Parse(String) | |
ToString() |