11 lines
166 B
C#
Raw Normal View History

namespace System.Diagnostics.Tracing
{
public class EventSourceCreatedEventArgs : EventArgs
{
public EventSource EventSource
{
get;
internal set;
}
}
}