SourceFilter Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether a listener should trace a message based on the source of a trace.
public ref class SourceFilter : System::Diagnostics::TraceFilter
public class SourceFilter : System.Diagnostics.TraceFilter
type SourceFilter = class
inherit TraceFilter
Public Class SourceFilter
Inherits TraceFilter
- Inheritance
Remarks
One of several different types of filters can be assigned to a trace listener to provide a layer of screening beyond that provided by the trace switch. The filter can be used to control the level of tracing that is produced by the listener.
This class filters events based on a specific trace source set by the user.
SourceFilter overrides the ShouldTrace method and defines a Source property that specifies the name of the trace source to be traced by the listener.
Note
This filter is provided because multiple trace sources can simultaneously use the same trace listener.
Constructors
SourceFilter(String) |
Initializes a new instance of the SourceFilter class, specifying the name of the trace source. |
Properties
Source |
Gets or sets the name of the trace source. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ShouldTrace(TraceEventCache, String, TraceEventType, Int32, String, Object[], Object, Object[]) |
Determines whether the trace listener should trace the event. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |