次の方法で共有


EventClass.FieldOrdinal Method

イベント クラス内のフィールドの位置を示す、0 から始まる序数を返します。

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

構文

'宣言
Public Function FieldOrdinal ( _
    fieldName As String _
) As Integer
public int FieldOrdinal (
    string fieldName
)
public:
virtual int FieldOrdinal (
    String^ fieldName
) sealed
public final int FieldOrdinal (
    String fieldName
)
public final function FieldOrdinal (
    fieldName : String
) : int

パラメータ

  • fieldName
    イベント クラス定義内のフィールドの名前です。

戻り値

フィールドの序数 (0 から始まります) を表す整数値です。

使用例

FieldOrdinal メソッドを使用し、フィールド名を指定することによってイベント クラスの序数を取得する例を次に示します。

これらの例では、Microsoft.SqlServer.NotificationServices 名前空間を使用しています。

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

'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 EventClassEnumeration.Item 
'to return an EventClass object.
Dim myEventClass As EventClass = _
    myEventClassEnumeration(eventClassName)

'Use the FieldOrdinal method to get a field ordinal.
Dim fieldOrdinal As Integer = myEventClass.FieldOrdinal(fieldName)
string instanceName = "MyInstanceName";
string applicationName = "MyApplicationName";
string eventClassName = "MyEventClassName";
string fieldName = "MyEventFieldName";

//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 EventClassEnumeration.Item 
//to return an EventClass object.
EventClass myEventClass = 
    myEventClassEnumeration[eventClassName];

//Use the FieldOrdinal method to get a field ordinal.
int fieldOrdinal = myEventClass.FieldOrdinal(fieldName);

スレッド セーフ

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

プラットフォーム

開発プラットフォーム

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

対象プラットフォーム

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

参照

関連項目

EventClass Class
EventClass Members
Microsoft.SqlServer.NotificationServices Namespace