IDTSComponentMetaData100.FireInformation Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenche un OnInformation(IDTSRuntimeObject100, Int32, String, String, String, Int32, String, Boolean) événement.
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)
Paramètres
- InformationCode
- Int32
Le code d’information défini par composants.
- SubComponent
- String
Le nom du composant qui déclenche l’événement.
- Description
- String
La description de l’événement d’information.
- HelpFile
- String
Le fichier d’aide qui fournit plus d’informations sur l’événement d’information.
- HelpContext
- Int32
L’identifiant de contexte pour l’information.
- pbFireAgain
- Boolean
Précise si l’événement doit être soulevé à nouveau à l’avenir.
- Attributs
Remarques
L’événement OnInformation ne doit être déclenché que lors de l’exécution des composants puisque les informations ne sont pas visiblement capturées lors de la conception des composants.
Le pbFireAgain paramètre est défini par l’exécution et indique si des clients écoutent l’événement. Les composants stockent localement la valeur de ce paramètre et doivent en évaluer la valeur avant de relever l’événement. Si la valeur du pbFireAgain paramètre est false, l’événement ne doit pas être élevé.