Terraria.Plugins.CoderCow.Protector.ServerMetadataHandler.Dispose C# (CSharp) Method

Dispose() protected method

protected Dispose ( bool isDisposing ) : void
isDisposing bool
return void
        protected override void Dispose(bool isDisposing)
        {
            if (base.IsDisposed)
            return;

              if (isDisposing) {
            if (this.WorkQueue != null) {
              lock (this.workQueueLock) {
            this.WorkQueue.Dispose();
              }
            }
              }

              base.Dispose(isDisposing);
        }