Amazon.Runtime.Internal.Util.TimingEvent.Dispose C# (CSharp) 메소드

Dispose() 보호된 메소드

Implements the Dispose pattern for the AmazonWebServiceClient
protected Dispose ( bool disposing ) : void
disposing bool Whether this object is being disposed via a call to Dispose /// or garbage collected.
리턴 void
        protected virtual void Dispose(bool disposing)
        {
            if (!this.disposed)
            {
                if (disposing)
                {
                    metrics.StopEvent(metric);
                }
                this.disposed = true;
            }
        }

Same methods

TimingEvent::Dispose ( ) : void