SoapDate クラス
アセンブリ: mscorlib (mscorlib.dll 内)

<SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapDate Implements ISoapXsd

XSD データ型の詳細については、MSDN ライブラリ (http://msdn.microsoft.com/library) の「XML Data Types Reference」を参照してください。

SoapDate クラスを使用して、XML date 型をラップするコード例を次に示します。
using System; using System.Runtime.Remoting.Metadata.W3cXsd2001; public class Demo { public static void Main(string[] args) { // Parse an XSD date to create a SoapDate object. string xsdDate = "2003-02-04"; SoapDate date = SoapDate.Parse(xsdDate); // Serialize a DateTime object as an XSD date string. Console.WriteLine("The date in XSD format is {0}." , date.ToString()); // Print the XSD type string of this particular SoapDate object. Console.WriteLine("The XSD type of the SoapDate object is {0}." , date.GetXsdType()); // Print the value of the SoapDate object. Console.WriteLine("The value of the SoapDate object is {0}.", date.Value); // Print the sign of the SoapDate object. Console.WriteLine("The sign of the SoapDate object is {0}.", date.Sign); // Print the XSD type string of the SoapDate class. Console.WriteLine("The XSD type of SoapDate is {0}.", SoapDate.XsdType); } }
using namespace System; using namespace System::Runtime::Remoting::Metadata::W3cXsd2001; int main() { // Parse an XSD date to create a SoapDate object. String^ xsdDate = "2003-02-04"; SoapDate^ date = SoapDate::Parse( xsdDate ); // Serialize a DateTime object as an XSD date string. Console::WriteLine( "The date in XSD format is {0}." , date ); // Print out the XSD type string of this particular SoapDate object. Console::WriteLine( "The XSD type of the SoapDate instance is {0}." , date->GetXsdType() ); // Print out the value of the SoapDate object. Console::WriteLine( "The value of the SoapDate instance is {0}.", date->Value ); // Print out the sign of the SoapDate object. Console::WriteLine( "The sign of the SoapDate instance is {0}.", date->Sign ); // Print out the XSD type string of the SoapDate class. Console::WriteLine( "The XSD type of SoapDate is {0}.", SoapDate::XsdType ); }
import System.*; import System.Runtime.Remoting.Metadata.W3cXsd2001.*; public class Demo { public static void main(String[] args) { // Parse an XSD date to create a SoapDate object. String xsdDate = "2003-02-04"; SoapDate date = SoapDate.Parse(xsdDate); // Serialize a DateTime object as an XSD date string. Console.WriteLine("The date in XSD format is {0}." , System.Convert.ToString(date.ToString())); // Print the XSD type string of this particular SoapDate object. Console.WriteLine("The XSD type of the SoapDate object is {0}." , System.Convert.ToString(date.GetXsdType())); // Print the value of the SoapDate object. Console.WriteLine("The value of the SoapDate object is {0}.", System.Convert.ToString(date.get_Value())); // Print the sign of the SoapDate object. Console.WriteLine("The sign of the SoapDate object is {0}.", System.Convert.ToString(date.get_Sign())); // Print the XSD type string of the SoapDate class. Console.WriteLine("The XSD type of SoapDate is {0}.", System.Convert.ToString(SoapDate.get_XsdType())); } //main } //Demo

System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate


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
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- SoapDate クラスのページへのリンク