mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
13 lines
341 B
C#
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; }
|
|
}
|
|
}
|