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 événement OnInformation(IDTSRuntimeObject100, Int32, String, String, String, Int32, String, Boolean).
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
Code d'informations défini par le composant.
- SubComponent
- String
Nom du composant qui déclenche l'événement.
- Description
- String
Description de l'événement d'information.
- HelpFile
- String
Fichier d'aide qui fournit davantage d'informations sur l'événement d'information.
- HelpContext
- Int32
ID de contexte pour l'information.
- pbFireAgain
- Boolean
Spécifie si l'événement doit être déclenché de nouveau à l'avenir.
- Attributs
Remarques
L’événement OnInformation ne doit être déclenché qu’au cours de l’exécution du composant, car les informations ne sont pas visiblement capturées pendant la conception du composant.
Le pbFireAgain
paramètre est défini par le runtime et indique si les clients écoutent l’événement. Les composants stockent la valeur de ce paramètre localement et doivent évaluer sa valeur avant de relancer l’événement. Si la valeur du pbFireAgain
paramètre est false
, l’événement ne doit pas être déclenché.