Dev2.Scheduler.EventInfo.EventInfo C# (CSharp) Method

EventInfo() private method

private EventInfo ( System.DateTime startDate, System.TimeSpan duration, System.DateTime endDate, ScheduleRunStatus success, string eventId ) : System
startDate System.DateTime
duration System.TimeSpan
endDate System.DateTime
success ScheduleRunStatus
eventId string
return System
        public EventInfo(DateTime startDate, TimeSpan duration, DateTime endDate, ScheduleRunStatus success, string eventId)
            : this(startDate, duration, endDate, success, eventId, "")
        {

            EventId = eventId;
            Success = success;
            EndDate = endDate;
            Duration = duration;
            StartDate = startDate;
      
        }
        public DateTime StartDate { get; private set; }

Same methods

EventInfo::EventInfo ( System.DateTime startDate, System.TimeSpan duration, System.DateTime endDate, ScheduleRunStatus success, string eventId, string failureReason ) : System
EventInfo