IDTSEvents100.OnWarning 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当任务处于不能证明出错但有必要向客户端发出警报的状态时调用。
public:
void OnWarning(Microsoft::SqlServer::Dts::Runtime::Wrapper::IDTSRuntimeObject100 ^ pSource, int WarningCode, System::String ^ SubComponent, System::String ^ Description, System::String ^ HelpFile, int HelpContext, System::String ^ IDOfInterfaceWithError);
[System.Runtime.InteropServices.DispId(4)]
public void OnWarning (Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSRuntimeObject100 pSource, int WarningCode, string SubComponent, string Description, string HelpFile, int HelpContext, string IDOfInterfaceWithError);
[<System.Runtime.InteropServices.DispId(4)>]
abstract member OnWarning : Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSRuntimeObject100 * int * string * string * string * int * string -> unit
Public Sub OnWarning (pSource As IDTSRuntimeObject100, WarningCode As Integer, SubComponent As String, Description As String, HelpFile As String, HelpContext As Integer, IDOfInterfaceWithError As String)
参数
- pSource
- IDTSRuntimeObject100
导致事件的对象。
- WarningCode
- Int32
一个用于标识警告消息的整数。 当与 source
参数结合使用时,此标识符应是唯一的,因此,source
和 warningCode
组合应是唯一的。 然而,仅仅是 warningCode
并不一定要求具有唯一性。
- SubComponent
- String
标识源中子模块的任意字符串。 例如,管道任务中的转换。
- Description
- String
消息的文本。
- HelpFile
- String
指向包含详细信息的帮助文件的路径。
- HelpContext
- Int32
帮助文件中该主题的标识符。
- IDOfInterfaceWithError
- String
导致错误的接口的 GUID 的文本表示形式。
- 属性
注解
有关详细信息,请参阅 IDTSEvents。