CK.Monitoring.XmlMonitoringExtensions.GetRequiredAttributeLogFilter C# (CSharp) Method

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
        static public LogFilter GetRequiredAttributeLogFilter( this XElement @this, string name )
        {
            return LogFilter.Parse( @this.AttributeRequired( name ).Value );
        }