コード例 #1
0
 public ServiceObserverReport(
     string serviceId,
     DateTime recordedTime,
     ServiceObserverResultType reportType)
     : base(serviceId, ServiceType.ServiceObserver, "")
 {
     this.reportType = reportType;
 }
コード例 #2
0
        public UnstableServiceReport(
            string serviceId,
            ServiceObserverResultType reportType,
            int downCount,
            List <ServiceLifetimeEvent> downEvents)

            : base(serviceId, ServiceType.ServiceObserver, "")
        {
            this.reportType = reportType;
            this.downCount  = downCount;
            this.downEvents = downEvents;
        }