System.Net.Sockets.BaseOverlappedAsyncResult.ForceReleaseUnmanagedStructures C# (CSharp) Метод

ForceReleaseUnmanagedStructures() защищенный Метод

protected ForceReleaseUnmanagedStructures ( ) : void
Результат void
        protected virtual void ForceReleaseUnmanagedStructures()
        {
            // Free the unmanaged memory if allocated.
            if (NetEventSource.IsEnabled) NetEventSource.Enter(this);
            _nativeOverlapped.Dispose();
            _nativeOverlapped = null;
            GC.SuppressFinalize(this);
        }
    }