Exemple #1
0
 // Token: 0x060000C0 RID: 192 RVA: 0x0000513C File Offset: 0x0000333C
 public void OnStart(EventBasedStartInfo startInfo)
 {
     EventBasedAssistant.Tracer.TraceDebug <EventBasedAssistant>((long)this.GetHashCode(), "{0}: OnStart started", this);
     this.OnStartInternal(startInfo);
     EventBasedAssistant.Tracer.TraceDebug <EventBasedAssistant>((long)this.GetHashCode(), "{0}: OnStart completed", this);
     EventBasedAssistant.TracerPfd.TracePfd <int, EventBasedAssistant>((long)this.GetHashCode(), "PFD IWS{0} {1}: Started", 27415, this);
 }
Exemple #2
0
 // Token: 0x06000C1A RID: 3098 RVA: 0x0004F12C File Offset: 0x0004D32C
 protected override void OnStartInternal(EventBasedStartInfo startInfo)
 {
     foreach (ApprovalApplication approvalApplication in this.approvalApplications)
     {
         approvalApplication.OnStart();
     }
 }
Exemple #3
0
 public void Start(EventBasedStartInfo startInfo)
 {
     AIBreadcrumbs.StartupTrail.Drop("Starting event assistant: " + this.Instance.Name);
     this.State = AssistantCollectionEntry.AssistantState.Starting;
     this.Instance.OnStart(startInfo);
     this.State = AssistantCollectionEntry.AssistantState.Started;
     AIBreadcrumbs.StartupTrail.Drop("Finished starting " + this.Instance.Name);
     base.TracePfd("PFD AIS {0} Start request for {1} ", new object[]
     {
         24983,
         this.Instance
     });
 }
Exemple #4
0
 // Token: 0x06000AAD RID: 2733 RVA: 0x00045A7C File Offset: 0x00043C7C
 protected override void OnStartInternal(EventBasedStartInfo startInfo)
 {
     this.assistantUtcStartTime = ExDateTime.UtcNow;
     ExTraceGlobals.MWITracer.TraceDebug <ExDateTime>((long)this.GetHashCode(), "MwiAssistant.OnStartInternal(startTime={0})", this.assistantUtcStartTime);
     using (RegistryKey registryKey = Registry.LocalMachine.CreateSubKey("System\\CurrentControlSet\\Services\\MSExchangeMailboxAssistants\\Parameters"))
     {
         TimeSpan timeSpan;
         if (MwiAssistant.TryReadTimeSpanValue(registryKey, "MwiSyncIntervalInSec", out timeSpan))
         {
             this.syncInterval = timeSpan;
         }
         if (MwiAssistant.TryReadTimeSpanValue(registryKey, "MwiMinUpdateIntervalInSec", out timeSpan))
         {
             this.minUpdateInterval = timeSpan;
         }
     }
     this.delayTable = new MwiDelayTable(this.minUpdateInterval, MwiAssistant.DelayQueueTimerResolution, new ProcessMailboxDelegate(this.DelayTableCallback));
     if (this.syncInterval.TotalSeconds > 0.0)
     {
         this.syncTimer = new Timer(new TimerCallback(this.SyncTimerCallback));
         this.syncTimer.Change(0, -1);
     }
     base.OnStartInternal(startInfo);
 }
Exemple #5
0
 // Token: 0x06000022 RID: 34 RVA: 0x0000307E File Offset: 0x0000127E
 public virtual void OnStart(EventBasedStartInfo startInfo)
 {
     MailboxTransportSubmissionAssistant.InitializePerformanceCounterMaintenance();
 }
 // Token: 0x06000964 RID: 2404 RVA: 0x0003F59B File Offset: 0x0003D79B
 protected override void OnStartInternal(EventBasedStartInfo startInfo)
 {
     this.initiator.Initiate(base.DatabaseInfo);
 }
Exemple #7
0
 // Token: 0x060000C1 RID: 193 RVA: 0x0000519A File Offset: 0x0000339A
 protected virtual void OnStartInternal(EventBasedStartInfo startInfo)
 {
 }
Exemple #8
0
 // Token: 0x06000C38 RID: 3128 RVA: 0x0004F584 File Offset: 0x0004D784
 protected override void OnStartInternal(EventBasedStartInfo startInfo)
 {
     ExTraceGlobals.ProvisioningAssistantTracer.TraceDebug((long)this.GetHashCode(), "ProvisioningAssistant.OnStartInternal. ProvisioningAssistant starting.");
     base.OnStartInternal(startInfo);
 }
Exemple #9
0
 // Token: 0x060013B4 RID: 5044 RVA: 0x0007323C File Offset: 0x0007143C
 protected override void OnStartInternal(EventBasedStartInfo startInfo)
 {
     base.OnStartInternal(startInfo);
     this.assistantAdapter.OnStart(startInfo);
 }
 // Token: 0x060013D1 RID: 5073 RVA: 0x000734F9 File Offset: 0x000716F9
 internal void OnStart(EventBasedStartInfo startInfo)
 {
     this.assistantCache.OnStart(this.IDatabaseInfo);
 }