次の方法で共有


IDTSComponentEvents.FireInformation メソッド

情報を含むイベントを発生させます。

名前空間:  Microsoft.SqlServer.Dts.Runtime
アセンブリ:  Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)

構文

'宣言
Sub FireInformation ( _
    informationCode As Integer, _
    subComponent As String, _
    description As String, _
    helpFile As String, _
    helpContext As Integer, _
    ByRef fireAgain As Boolean _
)
'使用
Dim instance As IDTSComponentEvents 
Dim informationCode As Integer 
Dim subComponent As String 
Dim description As String 
Dim helpFile As String 
Dim helpContext As Integer 
Dim fireAgain As Boolean

instance.FireInformation(informationCode, _
    subComponent, description, helpFile, _
    helpContext, fireAgain)
void FireInformation(
    int informationCode,
    string subComponent,
    string description,
    string helpFile,
    int helpContext,
    ref bool fireAgain
)
void FireInformation(
    int informationCode, 
    String^ subComponent, 
    String^ description, 
    String^ helpFile, 
    int helpContext, 
    bool% fireAgain
)
abstract FireInformation : 
        informationCode:int * 
        subComponent:string * 
        description:string * 
        helpFile:string * 
        helpContext:int * 
        fireAgain:bool byref -> unit
function FireInformation(
    informationCode : int, 
    subComponent : String, 
    description : String, 
    helpFile : String, 
    helpContext : int, 
    fireAgain : boolean
)

パラメーター

  • informationCode
    型: System.Int32
    情報メッセージを識別する Integer です。
  • subComponent
    型: System.String
    イベント ソースについての詳細を含む String です。
  • description
    型: System.String
    メッセージのテキストです。
  • helpFile
    型: System.String
    詳細な情報を含むヘルプ ファイルのパスです。
  • helpContext
    型: System.Int32
    ヘルプ ファイルのトピックの識別子です。
  • fireAgain
    型: System.Boolean%
    起動処理を続行するか停止するかを示す Boolean です。 値が true の場合、起動処理が続行されます。

説明

情報イベントは、大部分のユーザーに対して常に表示する重要性のあるメッセージとして定義されます。 情報イベントは潜在的な損害を意味しないという点で警告とは異なり、またメッセージ表示をオフにしたりフィルター選択したりできないという点、およびイベント ハンドラーによって処理されるという点でログ記録とも異なります。

イベントの起動は負荷が高くなる場合があるため、起動する必要がないイベントを抑制するメカニズムがランタイム エンジンに用意されています。 すべてのイベント起動メソッドには FireAgain パラメーターがあります。 この変数の値が false である場合、メソッドが値を返した後に、呼び出し元は現在の実行時間中にこのイベントを再度起動することがなくなります。

いくつかのイベントには subComponent パラメーターがあります。このパラメーターを使用すると、より詳細なイベント ソースを指定できます。

関連項目

参照

IDTSComponentEvents インターフェイス

Microsoft.SqlServer.Dts.Runtime 名前空間