IDTSEvents100.OnInformation 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
태스크가 정보를 제공해야 하는 경우 호출됩니다.
public:
void OnInformation(Microsoft::SqlServer::Dts::Runtime::Wrapper::IDTSRuntimeObject100 ^ pSource, int InformationCode, System::String ^ SubComponent, System::String ^ Description, System::String ^ HelpFile, int HelpContext, System::String ^ IDOfInterfaceWithError, [Runtime::InteropServices::Out] bool % pbFireAgain);
[System.Runtime.InteropServices.DispId(5)]
public void OnInformation (Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSRuntimeObject100 pSource, int InformationCode, string SubComponent, string Description, string HelpFile, int HelpContext, string IDOfInterfaceWithError, out bool pbFireAgain);
[<System.Runtime.InteropServices.DispId(5)>]
abstract member OnInformation : Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSRuntimeObject100 * int * string * string * string * int * string * bool -> unit
Public Sub OnInformation (pSource As IDTSRuntimeObject100, InformationCode As Integer, SubComponent As String, Description As String, HelpFile As String, HelpContext As Integer, IDOfInterfaceWithError As String, ByRef pbFireAgain As Boolean)
매개 변수
- pSource
- IDTSRuntimeObject100
오류의 원인, 즉 이벤트를 일으킨 개체입니다.
- InformationCode
- Int32
메시지를 식별하는 Integer입니다. source
와 source
의 조합은 중복되지 않아야 하므로 이 식별자를 informationCode
매개 변수와 함께 사용하는 경우에는 식별자가 고유해야 합니다. 그러나 informationCode
만 단독으로 사용하는 경우에는 식별자가 고유하지 않아도 됩니다.
- SubComponent
- String
원본 내 하위 모듈을 식별하는 임의의 문자열입니다. 파이프라인 태스크의 변환을 예로 들 수 있습니다.
- Description
- String
메시지의 텍스트입니다.
- HelpFile
- String
자세한 정보가 포함된 도움말 파일의 경로입니다.
- HelpContext
- Int32
도움말 파일의 항목에 대한 식별자입니다.
- IDOfInterfaceWithError
- String
오류를 발생시킨 인터페이스의 GUID를 나타내는 텍스트 표현입니다.
- pbFireAgain
- Boolean
계속 발생하거나 발사를 중지해야 임을 나타내는 부울입니다. true 값은 계속 발생해야 임을 나타냅니다.
- 특성
설명
경고에 비해 정보 이벤트는 데이터 손실 또는 기타 문제의 원인을 반드시 나타내지 않는 중요한 정보를 전달합니다. 그러나 로그 항목 이상을 보증하는 것이 충분히 중요합니다.
자세한 내용은 IDTSEvents를 참조하세요.