Files
Readarr/src/Microsoft.AspNet.SignalR.Core/Tracing/ITraceManager.cs
2013-11-21 21:26:57 -08:00

13 lines
341 B
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
using System.Diagnostics;
namespace Microsoft.AspNet.SignalR.Tracing
{
public interface ITraceManager
{
SourceSwitch Switch { get; }
TraceSource this[string name] { get; }
}
}