ReleaseBuffer() public static method

public static ReleaseBuffer ( byte buffer ) : void
buffer byte
return void
            public static void Release(SendQueue.Entry e)
            {
                Stack stack1 = SendQueue.Entry.m_Pool;

                lock (SendQueue.Entry.m_Pool)
                {
                    SendQueue.Entry.m_Pool.Push(e);
                    if (e.m_Managed)
                    {
                        SendQueue.ReleaseBuffer(e.m_Buffer);
                    }
                }
            }