LoggerFilterOptions Class

Definition

The options for a LoggerFilter.

public ref class LoggerFilterOptions
public class LoggerFilterOptions
type LoggerFilterOptions = class
Public Class LoggerFilterOptions
Inheritance
LoggerFilterOptions

Constructors

LoggerFilterOptions()

Creates a new LoggerFilterOptions instance.

Properties

CaptureScopes

Gets or sets a value indicating whether logging scopes are captured.

MinLevel

Gets or sets the minimum level of log messages if none of the rules match.

Rules

Gets the collection of LoggerFilterRule used for filtering log messages.

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

Returns a string that represents the current object.

(Inherited from Object)

Extension Methods

AddFilter(LoggerFilterOptions, Func<LogLevel,Boolean>)

Adds a log filter to the factory.

AddFilter(LoggerFilterOptions, Func<String,LogLevel,Boolean>)

Adds a log filter to the factory.

AddFilter(LoggerFilterOptions, Func<String,String,LogLevel,Boolean>)

Adds a log filter to the factory.

AddFilter(LoggerFilterOptions, String, LogLevel)

Adds a log filter to the factory.

AddFilter(LoggerFilterOptions, String, Func<LogLevel,Boolean>)

Adds a log filter to the factory.

AddFilter<T>(LoggerFilterOptions, Func<LogLevel,Boolean>)

Adds a log filter for the given ILoggerProvider.

AddFilter<T>(LoggerFilterOptions, Func<String,LogLevel,Boolean>)

Adds a log filter for the given ILoggerProvider.

AddFilter<T>(LoggerFilterOptions, String, LogLevel)

Adds a log filter for the given ILoggerProvider.

AddFilter<T>(LoggerFilterOptions, String, Func<LogLevel,Boolean>)

Adds a log filter for the given ILoggerProvider.

Applies to