System.Diagnostics.TraceUtils.IsOwnedTextWriterTL C# (CSharp) Method

IsOwnedTextWriterTL() static private method

static private IsOwnedTextWriterTL ( Type type ) : bool
type System.Type
return bool
        internal static bool IsOwnedTextWriterTL(Type type) {
            return (typeof(XmlWriterTraceListener) == type)  
                    || (typeof(DelimitedListTraceListener) == type)
                    || (typeof(TextWriterTraceListener) == type); 
        }