Files
linux-packaging-mono/mcs/class/corlib/System.Diagnostics.Tracing/EventSourceCreatedEventArgs.cs

11 lines
166 B
C#
Raw Normal View History

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