C# Class CK.Monitoring.XmlMonitoringExtensions

Helpers to read XML configurations.
Show file Open project: Invenietis/ck-core

Public Methods

Method Description
GetAttributeLogFilter ( this @this, string name, bool fallbackToUndefined ) : LogFilter?

Reads a LogFilter.

GetRequiredAttributeLogFilter ( this @this, string name ) : LogFilter

Reads a LogFilter that must exist.

Method Details

GetAttributeLogFilter() static public method

Reads a LogFilter.
static public GetAttributeLogFilter ( this @this, string name, bool fallbackToUndefined ) : LogFilter?
@this this
name string Name of the attribute.
fallbackToUndefined bool True to return instead of null when not found.
return LogFilter?

GetRequiredAttributeLogFilter() static public method

Reads a LogFilter that must exist.
static public GetRequiredAttributeLogFilter ( this @this, string name ) : LogFilter
@this this
name string Name of the attribute.
return CK.Core.LogFilter