Amazon.TraceListener.DynamoDBTraceListener.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 override void Dispose(bool disposing)
        {
            if (!this.disposed)
            {
                if (disposing)
                {
                    Flush();
                }
                IsEnabled = false;
                disposed = true;
            }
        }