System.IO.Compression.Inflater.DeallocateInputBufferHandle C# (CSharp) Méthode

DeallocateInputBufferHandle() private méthode

Frees the GCHandle being used to store the input buffer
private DeallocateInputBufferHandle ( ) : void
Résultat void
        private void DeallocateInputBufferHandle()
        {
            Debug.Assert(_inputBufferHandle.IsAllocated);

            lock (SyncLock)
            {
                _zlibStream.AvailIn = 0;
                _zlibStream.NextIn = ZLibNative.ZNullPtr;
                _inputBufferHandle.Free();
            }
        }