System.Net.HttpListenerRequest.DetachBlob C# (CSharp) Method

DetachBlob() private method

private DetachBlob ( RequestContextBase memoryBlob ) : void
memoryBlob RequestContextBase
return void
        internal void DetachBlob(RequestContextBase memoryBlob)
        {
            if (memoryBlob != null && (object)memoryBlob == (object)_memoryBlob)
            {
                _memoryBlob = null;
            }
        }