ChannelAdvertisementEventArgs.cs
16 lines
| 431 B
| text/x-csharp
|
CSharpLexer
cin
|
r281 | using System; | |
using System.Diagnostics; | |||
namespace Implab.Diagnostics | |||
{ | |||
public class ChannelAdvertisementEventArgs : EventArgs { | |||
internal ChannelAdvertisementEventArgs(object channelId, TraceSource source) { | |||
ChannelId = channelId; | |||
Source = source; | |||
} | |||
public object ChannelId { get; private set; } | |||
public TraceSource Source { get; private set; } | |||
} | |||
} |