EventSource.SendCommand 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.
Envoie une commande à une source d'événements spécifiée.
public:
static void SendCommand(System::Diagnostics::Tracing::EventSource ^ eventSource, System::Diagnostics::Tracing::EventCommand command, System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ commandArguments);
public static void SendCommand (System.Diagnostics.Tracing.EventSource eventSource, System.Diagnostics.Tracing.EventCommand command, System.Collections.Generic.IDictionary<string,string> commandArguments);
public static void SendCommand (System.Diagnostics.Tracing.EventSource eventSource, System.Diagnostics.Tracing.EventCommand command, System.Collections.Generic.IDictionary<string,string?>? commandArguments);
static member SendCommand : System.Diagnostics.Tracing.EventSource * System.Diagnostics.Tracing.EventCommand * System.Collections.Generic.IDictionary<string, string> -> unit
Public Shared Sub SendCommand (eventSource As EventSource, command As EventCommand, commandArguments As IDictionary(Of String, String))
Paramètres
- eventSource
- EventSource
Source d'événements à laquelle envoyer la commande.
- command
- EventCommand
Commande d'événement à envoyer.
- commandArguments
- IDictionary<String,String>
Arguments pour la commande d’événement.
Remarques
L’appel SendCommand transfère la commande au OnEventCommand rappel. Ce que fait la EventSource commande et ses arguments est spécifique à la source d’événement. Les arguments de commande et de commande sont passés au OnEventCommand rappel de la source d’événement spécifiée. Si possible, la source d’événements actuelle ne doit pas affecter les événements de filtrage des autres écouteurs d’événements ; toutefois, cela peut ne pas être possible si la commande provoque un garbage collection, une vidage du système ou une autre activité globale.