EventSource.SendCommand Metodo

Definizione

Invia un comando a un'origine evento specificata.

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))

Parametri

eventSource
EventSource

L'origine evento a cui inviare il comando.

command
EventCommand

Il comando di evento da inviare.

commandArguments
IDictionary<String,String>

Argomenti per il comando evento.

Commenti

La chiamata SendCommand inoltra il comando al OnEventCommand callback. EventSource Ciò che fa con il comando e i relativi argomenti è specifico dell'origine evento. I comandi e gli argomenti dei comandi vengono passati al OnEventCommand callback dell'origine evento specificata. Se possibile, l'origine evento corrente non deve influire sugli altri eventi di filtro dei listener eventi; Tuttavia, ciò potrebbe non essere possibile se il comando causa una Garbage Collection, un download di sistema o un'altra attività globale.

Si applica a