System.Net.Sockets.OverlappedAsyncResult.PostCompletion C# (CSharp) Method

PostCompletion() private method

private PostCompletion ( int numBytes ) : object
numBytes int
return object
        internal override object PostCompletion(int numBytes)
        {
            if (ErrorCode == 0 && NetEventSource.IsEnabled)
            {
                LogBuffer(numBytes);
            }

            return base.PostCompletion(numBytes);
        }