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 コンストラクタ
アセンブリ: mscorlib (mscorlib.dll 内)
構文
プラットフォーム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 プロパティ
SoapDuration メソッド
パブリック メソッド| 名前 | 説明 | |
|---|---|---|
| Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
| GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
| GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
| Parse | 指定した String を TimeSpan オブジェクトに変換します。 |
| ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
| ToString | オーバーロードされます。 現在のオブジェクトを表す文字列を返します。 |
参照SoapDuration メンバ
TimeSpan を XSD duration に従って書式設定した文字列にシリアル化および逆シリアル化するための静的メソッドを提供します。
SoapDuration データ型で公開されるメンバを以下の表に示します。
パブリック コンストラクタ| 名前 | 説明 | |
|---|---|---|
| SoapDuration |
パブリック プロパティ
パブリック メソッド| 名前 | 説明 | |
|---|---|---|
| Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
| GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
| GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
| Parse | 指定した String を TimeSpan オブジェクトに変換します。 |
| ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
| ToString | オーバーロードされます。 現在のオブジェクトを表す文字列を返します。 |
参照- SoapDurationのページへのリンク