NuGetGallery.Monitoring.MonitoringEvent.MonitoringEvent C# (CSharp) Method

MonitoringEvent() protected method

protected MonitoringEvent ( EventType type, System.DateTime timestampUtc, string message, string resource ) : System
type EventType
timestampUtc System.DateTime
message string
resource string
return System
        protected MonitoringEvent(EventType type, DateTime timestampUtc, string message, string resource)
        {
            Type = type;
            TimestampUtc = timestampUtc;
            Action = message;
            Resource = resource;
        }
MonitoringEvent