Mercurial > pub > ImplabNet
annotate Implab/Diagnostics/ChannelAdvertisementEventArgs.cs @ 281:e0916ddc9950 v3 tip
code cleanup and refactoring
| author | cin | 
|---|---|
| date | Fri, 01 Jun 2018 21:35:24 +0300 | 
| parents | |
| children | 
| rev | line source | 
|---|---|
| 281 | 1 using System; | 
| 2 using System.Diagnostics; | |
| 3 | |
| 4 namespace Implab.Diagnostics | |
| 5 { | |
| 6 public class ChannelAdvertisementEventArgs : EventArgs { | |
| 7 internal ChannelAdvertisementEventArgs(object channelId, TraceSource source) { | |
| 8 ChannelId = channelId; | |
| 9 Source = source; | |
| 10 } | |
| 11 | |
| 12 public object ChannelId { get; private set; } | |
| 13 | |
| 14 public TraceSource Source { get; private set; } | |
| 15 | |
| 16 } | |
| 17 } | 
