SourceFilter(String) Construtor

Definição

Inicializa uma nova instância da classe SourceFilter, especificando a origem de rastreamento.Initializes a new instance of the SourceFilter class, specifying the name of the trace source.

public:
 SourceFilter(System::String ^ source);
public SourceFilter (string source);
new System.Diagnostics.SourceFilter : string -> System.Diagnostics.SourceFilter
Public Sub New (source As String)

Parâmetros

source
String

O nome da origem de rastreamento.The name of the trace source.

Exemplos

O exemplo de código a seguir chama o TraceData método usando dois filtros de origem diferentes, um com um nome fictício, o outro com o nome da fonte de rastreamento atual.The following code example calls the TraceData method using two different source filters, one with a fictitious name, the other with the name of the current trace source. No primeiro caso, o rastreamento não é gravado no console; no segundo caso, o rastreamento é gravado.In the first case, the trace is not written to the console; in the second case, the trace is written. Este exemplo de código faz parte de um exemplo maior fornecido para a TraceSource classe.This code example is part of a larger example provided for the TraceSource class.

// Test the filter on the ConsoleTraceListener.
ts.Listeners["console"].Filter = new SourceFilter("No match");
ts.TraceData(TraceEventType.Information, 5,
    "SourceFilter should reject this message for the console trace listener.");
ts.Listeners["console"].Filter = new SourceFilter("TraceTest");
ts.TraceData(TraceEventType.Information, 6,
    "SourceFilter should let this message through on the console trace listener.");
' Test the filter on the ConsoleTraceListener.
ts.Listeners("console").Filter = New SourceFilter("No match")
ts.TraceData(TraceEventType.Information, 5, "SourceFilter should reject this message for the console trace listener.")
ts.Listeners("console").Filter = New SourceFilter("TraceTest")
ts.TraceData(TraceEventType.Information, 6, "SourceFilter should let this message through on the console trace listener.")

Comentários

O valor do source parâmetro é usado para inicializar a Source propriedade.The value of the source parameter is used to initialize the Source property.

Aplica-se a