次の方法で共有


EventClassEnumeration.Item Property

イベント クラスへの参照を返します。

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

構文

'宣言
Public ReadOnly Default Property Item ( _
    eventClassName As String _
) As EventClass
public EventClass this [
    string eventClassName
] { get; }
public:
virtual property EventClass^ default [String^] {
    EventClass^ get (String^ eventClassName) sealed;
}
/** @property */
public final EventClass get_Item (String eventClassName)

パラメータ

  • eventClassName
    取得するイベント クラスの名前です。

プロパティ値

指定した EventClass です。

使用例

Item プロパティを使用して、特定のイベント クラスを表す EventClass オブジェクトを取得する例を次に示します。

Dim instanceName As String = "MyInstanceName"
Dim applicationName As String = "MyApplicationName"
Dim eventClassName As String = "MyEventClassName"

'Create an NSInstance object.
Dim myInstance As New NSInstance(instanceName)

'Create an NSApplication object.
Dim myApplication As New NSApplication(myInstance, applicationName)

'Create an EventClassEnumeration object.
Dim myEventClassEnumeration As _
    New EventClassEnumeration(myApplication)

'Use the Item property to return an EventClass object.
Dim myEventClass As EventClass = _
    myEventClassEnumeration(eventClassName)
string instanceName = "MyInstanceName";
string applicationName = "MyApplicationName";
string eventClassName = "MyEventClassName";

//Create an NSInstance object.
NSInstance myInstance = new NSInstance(instanceName);
//Create an NSApplication object.
NSApplication myApplication = 
    new NSApplication(myInstance, applicationName);

//Create an EventClassEnumeration object.
EventClassEnumeration myEventClassEnumeration = 
    new EventClassEnumeration(myApplication);

//Use the Item property to return an EventClass object.
EventClass myEventClass = 
    myEventClassEnumeration[eventClassName];

スレッド セーフ

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

プラットフォーム

開発プラットフォーム

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

対象プラットフォーム

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

参照

関連項目

EventClassEnumeration Class
EventClassEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace