IDTSComponentMetaData100.FireInformation 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
public:
void FireInformation(int InformationCode, System::String ^ SubComponent, System::String ^ Description, System::String ^ HelpFile, int HelpContext, [Runtime::InteropServices::Out] bool % pbFireAgain);
[System.Runtime.InteropServices.DispId(128)]
public void FireInformation (int InformationCode, string SubComponent, string Description, string HelpFile, int HelpContext, out bool pbFireAgain);
[<System.Runtime.InteropServices.DispId(128)>]
abstract member FireInformation : int * string * string * string * int * bool -> unit
Public Sub FireInformation (InformationCode As Integer, SubComponent As String, Description As String, HelpFile As String, HelpContext As Integer, ByRef pbFireAgain As Boolean)
参数
- InformationCode
- Int32
组件定义的信息代码。
- SubComponent
- String
引发事件的组件的名称。
- Description
- String
信息事件的说明。
- HelpFile
- String
提供有关信息事件的详细信息的帮助文件。
- HelpContext
- Int32
信息的上下文 ID。
- pbFireAgain
- Boolean
指定以后是否应再次引发该事件。
- 属性
注解
OnInformation仅应在组件执行期间引发该事件,因为在组件设计期间不会明显捕获信息。
该 pbFireAgain
参数由运行时设置,并指示任何客户端是否正在侦听事件。 组件在本地存储此参数的值,并在再次引发事件之前评估其值。 如果参数的值 pbFireAgain
为 false
,则不应引发该事件。