System.Net.Connection.PostReceiveWrapper C# (CSharp) Method

PostReceiveWrapper() private static method

private static PostReceiveWrapper ( object state ) : void
state object
return void
        private static void PostReceiveWrapper(object state) {
            Connection thisConnection = state as Connection;
            GlobalLog.Enter("Connection#" + ValidationHelper.HashString(thisConnection) + "::PostReceiveWrapper", "Cnt#" + ValidationHelper.HashString(thisConnection));
            GlobalLog.Assert(thisConnection != null, "Connection#{0}::PostReceiveWrapper()|thisConnection == null", ValidationHelper.HashString(thisConnection));

            thisConnection.PostReceive();

            GlobalLog.Leave("Connection#" + ValidationHelper.HashString(thisConnection) + "::PostReceiveWrapper");
        }