ErrorSupport.FireInformationWithArgs Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raises an informational message with the option to provide an array of user-defined objects or information.
Overloads
FireInformationWithArgs(Int32, Boolean, Object[]) |
Raises an informational message about the specified HRESULT, allows execution to be cancelled, and includes an optional array of user-defined objects or information. |
FireInformationWithArgs(Int32, String, String, Int32, Boolean, Object[]) |
Raises an informational message about the specified HRESULT, associates it with the specified component, help file, and help context, allows execution to be cancelled, and includes an optional array of user-defined objects or information. |
FireInformationWithArgs(Int32, Boolean, Object[])
Raises an informational message about the specified HRESULT, allows execution to be cancelled, and includes an optional array of user-defined objects or information.
public:
void FireInformationWithArgs(int hResult, bool % bFireAgain, ... cli::array <System::Object ^> ^ paramList);
public void FireInformationWithArgs (int hResult, ref bool bFireAgain, params object[] paramList);
member this.FireInformationWithArgs : int * bool * obj[] -> unit
Public Sub FireInformationWithArgs (hResult As Integer, ByRef bFireAgain As Boolean, ParamArray paramList As Object())
Parameters
- hResult
- Int32
The HRESULT of the underlying COM function.
- bFireAgain
- Boolean
true if the component should raise the same informational message the next time the same event occurs; otherwise, false.
- paramList
- Object[]
An optional array of user-defined objects or information.
Applies to
FireInformationWithArgs(Int32, String, String, Int32, Boolean, Object[])
Raises an informational message about the specified HRESULT, associates it with the specified component, help file, and help context, allows execution to be cancelled, and includes an optional array of user-defined objects or information.
public:
void FireInformationWithArgs(int hResult, System::String ^ strSubComponent, System::String ^ strHelpFile, int HelpContext, bool % bFireAgain, ... cli::array <System::Object ^> ^ paramList);
public void FireInformationWithArgs (int hResult, string strSubComponent, string strHelpFile, int HelpContext, ref bool bFireAgain, params object[] paramList);
member this.FireInformationWithArgs : int * string * string * int * bool * obj[] -> unit
Public Sub FireInformationWithArgs (hResult As Integer, strSubComponent As String, strHelpFile As String, HelpContext As Integer, ByRef bFireAgain As Boolean, ParamArray paramList As Object())
Parameters
- hResult
- Int32
The HRESULT of the underlying COM function.
- strSubComponent
- String
The friendly name of the component.
- strHelpFile
- String
The help file that provides additional information about the messages that are raised.
- HelpContext
- Int32
The location in the help file that provides additional information about the messages that are raised.
- bFireAgain
- Boolean
true if the component should raise the same informational message the next time the same event occurs; otherwise, false.
- paramList
- Object[]
An optional array of user-defined objects or information.