Abbotware.Core.Threading.ScopedEventHandleGuard.OnDisposeUnmanagedResources C# (CSharp) Method

OnDisposeUnmanagedResources() protected method

protected OnDisposeUnmanagedResources ( ) : void
return void
        protected override void OnDisposeUnmanagedResources()
        {
            var result = this.eventHandle.Set();

            if (!result)
            {
                this.Logger.Warn("Set failed");
            }
        }
    }