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);
        }
    }