NLog.MDC.Contains C# (CSharp) Method

Contains() public static method

Checks whether the specified item exists in current thread MDC.
public static Contains ( string item ) : bool
item string Item name.
return bool
        public static bool Contains(string item)
        {
            return MappedDiagnosticsContext.Contains(item);
        }