Mindscape.Raygun4Net.PendingEvent.PendingEvent C# (CSharp) Method

PendingEvent() public method

public PendingEvent ( RaygunPulseEventType eventType, string name, long milliseconds, string sessionId ) : System
eventType RaygunPulseEventType
name string
milliseconds long
sessionId string
return System
        public PendingEvent(RaygunPulseEventType eventType, string name, long milliseconds, string sessionId)
        {
            _eventType = eventType;
              _name = name;
              _milliseconds = milliseconds;
              _timestamp = DateTime.UtcNow - TimeSpan.FromMilliseconds (milliseconds);
              _sessionId = sessionId;
        }
PendingEvent