EventClass.FieldName Method
イベント クラス内のフィールドの名前を返します。
名前空間: Microsoft.SqlServer.NotificationServices
アセンブリ: Microsoft.SqlServer.NotificationServices (microsoft.sqlserver.notificationservices.dll 内)
構文
'宣言
Public Function FieldName ( _
fieldOrdinal As Integer _
) As String
public string FieldName (
int fieldOrdinal
)
public:
virtual String^ FieldName (
int fieldOrdinal
) sealed
public final String FieldName (
int fieldOrdinal
)
public final function FieldName (
fieldOrdinal : int
) : String
パラメータ
- fieldOrdinal
イベント クラス定義内のフィールドの位置を示す、0 から始まる序数です。
戻り値
フィールドの名前を表す文字列です。
使用例
FieldName メソッドを使用し、フィールドの序数を指定することによってイベント クラスの名前を取得する例を次に示します。
これらの例では、Microsoft.SqlServer.NotificationServices 名前空間を使用しています。
Dim instanceName As String = "MyInstanceName"
Dim applicationName As String = "MyApplicationName"
Dim eventClassName As String = "MyEventClassName"
Dim fieldOrdinal As Integer = 0
'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 FieldName method to get a field name.
Dim fieldName As String = myEventClass.FieldName(fieldOrdinal)
string instanceName = "MyInstanceName";
string applicationName = "MyApplicationName";
string eventClassName = "MyEventClassName";
int fieldOrdinal = 0;
//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 FieldName method to get a field name.
string fieldName = myEventClass.FieldName(fieldOrdinal);
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
EventClass Class
EventClass Members
Microsoft.SqlServer.NotificationServices Namespace