// Token: 0x06007D13 RID: 32019 RVA: 0x00232A74 File Offset: 0x00230C74
        internal void Write(string eventName)
        {
            Contract.Requires <ArgumentNullException>(eventName != null, "eventName");
            EventSourceOptions eventSourceOptions = default(EventSourceOptions);

            EventSourceActivity.EmptyStruct instance = EventSourceActivity.EmptyStruct.Instance;
            this.Write <EventSourceActivity.EmptyStruct>(eventName, ref eventSourceOptions, ref instance);
        }
 // Token: 0x06007D17 RID: 32023 RVA: 0x00232B04 File Offset: 0x00230D04
 public void Dispose()
 {
     if (this._state == EventSourceActivity.State.Started)
     {
         this._state = EventSourceActivity.State.Stopped;
         EventSourceActivity.EmptyStruct instance = EventSourceActivity.EmptyStruct.Instance;
         this._eventSource.Write <EventSourceActivity.EmptyStruct>("Dispose", ref this._startStopOptions, ref this._id, ref EventSourceActivity._emptyGuid, ref instance);
     }
 }
 // Token: 0x06007D11 RID: 32017 RVA: 0x00232A3C File Offset: 0x00230C3C
 internal void Stop(string eventName)
 {
     Contract.Requires <ArgumentNullException>(eventName != null, "eventName");
     EventSourceActivity.EmptyStruct instance = EventSourceActivity.EmptyStruct.Instance;
     this.Stop <EventSourceActivity.EmptyStruct>(eventName, ref instance);
 }