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


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

SoapDuration クラスのメソッドを使用して、TimeSpan オブジェクトと XSD duration 文字列間の変換を行う方法を次のコード例に示します。
using System; using System.Runtime.Remoting.Metadata.W3cXsd2001; public class Demo { public static void Main(string[] args) { // Parse an XSD duration to create a TimeSpan object. // This is a duration of 2 years, 3 months, 9 days, 12 hours, // 35 minutes, 20 seconds, and 10 milliseconds. string xsdDuration = "P2Y3M9DT12H35M20.0100000S"; TimeSpan timeSpan = SoapDuration.Parse(xsdDuration); Console.WriteLine("The time span contains {0} days.", timeSpan.Days); Console.WriteLine("The time span contains {0} hours.", timeSpan.Hours); Console.WriteLine("The time span contains {0} minutes.", timeSpan.Minutes); Console.WriteLine("The time span contains {0} seconds.", timeSpan.Seconds); // Serialize a TimeSpan object as an XSD duration string. // This object represents a time span of 399 days, 12 hours , // 35 minutes, 20 seconds, and 10 milliseconds. TimeSpan duration = new TimeSpan(399, 12, 35, 20, 10); Console.WriteLine("The duration in XSD format is {0}.", SoapDuration.ToString(duration)); // Print the XSD type string of the SoapDuration class. Console.WriteLine("The XSD type of SoapDuration is {0}.", SoapDuration.XsdType); } }
#using <System.dll> #using <System.Runtime.Remoting.dll> using namespace System; using namespace System::Runtime::Remoting::Metadata::W3cXsd2001; int main() { // Parse an XSD duration to create a TimeSpan object. // This is a duration of 2 years, 3 months, 9 days, 12 hours, // 35 minutes, 20 seconds, and 10 milliseconds. String^ xsdDuration = L"P2Y3M9DT12H35M20.0100000S"; TimeSpan timeSpan = SoapDuration::Parse( xsdDuration ); Console::WriteLine( L"The time span contains {0} days.", timeSpan.Days ); Console::WriteLine( L"The time span contains {0} hours.", timeSpan.Hours ); Console::WriteLine( L"The time span contains {0} minutes.", timeSpan.Minutes ); Console::WriteLine( L"The time span contains {0} seconds.", timeSpan.Seconds ); // Serialize a TimeSpan object as an XSD duration string. // This object represents a time span of 399 days, 12 hours, // 35 minutes, 20 seconds, and 10 milliseconds. TimeSpan duration = TimeSpan(399,12,35,20,10); Console::WriteLine( L"The duration in XSD format is {0}." , SoapDuration::ToString( duration ) ); // Print the XSD type string of the SoapDuration class. Console::WriteLine( L"The XSD type of SoapDuration is {0}.", SoapDuration::XsdType ); }
import System.*; import System.Runtime.Remoting.Metadata.W3cXsd2001.*; public class Demo { public static void main(String[] args) { // Parse an XSD duration to create a TimeSpan object. // This is a duration of 2 years, 3 months, 9 days, 12 hours, // 35 minutes, 20 seconds, and 10 milliseconds. String xsdDuration = "P2Y3M9DT12H35M20.0100000S"; TimeSpan timeSpan = SoapDuration.Parse(xsdDuration); Console.WriteLine("The time span contains {0} days.", (Int32)timeSpan.get_Days()); Console.WriteLine("The time span contains {0} hours.", (Int32)timeSpan.get_Hours()); Console.WriteLine("The time span contains {0} minutes.", (Int32)timeSpan.get_Minutes()); Console.WriteLine("The time span contains {0} seconds.", (Int32)timeSpan.get_Seconds()); // Serialize a TimeSpan object as an XSD duration string. // This object represents a time span of 399 days, 12 hours , // 35 minutes, 20 seconds, and 10 milliseconds. TimeSpan duration = new TimeSpan(399, 12, 35, 20, 10); Console.WriteLine("The duration in XSD format is {0}.", SoapDuration.ToString(duration)); // Print the XSD type string of the SoapDuration class. Console.WriteLine("The XSD type of SoapDuration is {0}.", SoapDuration.get_XsdType()); } //main } //Demo

System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDuration


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


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