次の方法で共有


TimeZoneEnumeration.GetEnumerator Method

IEnumerator インターフェイスを取得します。このインターフェイスを使用して、TimeZoneEnumeration オブジェクトで表されるタイムゾーンのコレクションを繰り返し処理できます。

名前空間: Microsoft.SqlServer.NotificationServices
アセンブリ: Microsoft.SqlServer.NotificationServices (microsoft.sqlserver.notificationservices.dll 内)

構文

'宣言
Public Function GetEnumerator As IEnumerator
public IEnumerator GetEnumerator ()
public:
virtual IEnumerator^ GetEnumerator () sealed
public final IEnumerator GetEnumerator ()
public final function GetEnumerator () : IEnumerator

戻り値

TimeZoneEnumeration オブジェクトの IEnumerator インターフェイスです。

解説

このメソッドを使用して取得した IEnumerator インターフェイスを使用すると、TimeZoneEnumeration のタイムゾーンを繰り返し処理できす。初期化された TimeZoneEnumeration は、指定した Notification Services インスタンスのタイムゾーンのコレクションを表します。

使用例

TimeZoneEnumeration オブジェクトを使用して、すべてのタイム ゾーンを繰り返し処理する例を次に示します。GetEnumerator メソッドでは、For Each ステートメントと foreach ステートメントが使用できます。

Dim instanceName As String = "Tutorial"

' Create the NSInstance object.
Dim testInstance As NSInstance = _
    New NSInstance(instanceName)

' Create the TimeZoneEnumeration.
Dim testTimeZoneEnumeration As TimeZoneEnumeration = _
    New TimeZoneEnumeration(testInstance, _
    System.Globalization.CultureInfo.CurrentUICulture.Parent.Name)

' Step through the enumeration, populating
' the drop-down list as you go. Note that the TimeZone
' reference must include the namespace, because there is
' an identically named class in the System namespace.
Dim thisTimeZone As _
    Microsoft.SqlServer.NotificationServices.TimeZone
For Each thisTimeZone In testTimeZoneEnumeration
    Console.WriteLine(thisTimeZone.TimeZoneName)
Next
string instanceName = "Tutorial";

// Create the NSInstance object.
NSInstance testInstance = new NSInstance(instanceName);

// Create the TimeZoneEnumeration.
TimeZoneEnumeration testTimeZoneEnumeration =
    new TimeZoneEnumeration(testInstance,
    System.Globalization.CultureInfo.CurrentUICulture.Parent.Name);

// Step through the enumeration, populating
// the drop-down list as you go. Note that the TimeZone
// reference must include the namespace, because there is
// an identically named class in the System namespace.
foreach(Microsoft.SqlServer.NotificationServices.TimeZone
thisTimeZone in testTimeZoneEnumeration)
{
    Console.WriteLine(thisTimeZone.TimeZoneName);
}

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

TimeZoneEnumeration Class
TimeZoneEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace