Microsoft.AspNet.SignalR.Client.Transports.LongPollingTransport.OnChunk C# (CSharp) 메소드

OnChunk() 개인적인 정적인 메소드

private static OnChunk ( IConnection connection, ArraySegment readBuffer ) : bool
connection IConnection
readBuffer ArraySegment
리턴 bool
        private static bool OnChunk(IConnection connection, ArraySegment<byte> readBuffer)
        {
            if (IsKeepAlive(readBuffer))
            {
                connection.MarkLastMessage();
                return false;
            }

            return true;
        }