Renci.SshNet.Abstractions.DiagnosticAbstraction.IsEnabled C# (CSharp) Method

IsEnabled() public static method

public static IsEnabled ( TraceEventType traceEventType ) : bool
traceEventType TraceEventType
return bool
        public static bool IsEnabled(TraceEventType traceEventType)
        {
            return SourceSwitch.ShouldTrace(traceEventType);
        }
DiagnosticAbstraction