websocket-server – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5  
6 namespace WebSockets.Events
7 {
8 public class BinaryMultiFrameEventArgs : BinaryFrameEventArgs
9 {
10 public bool IsLastFrame { get; private set; }
11  
12 public BinaryMultiFrameEventArgs(byte[] payload, bool isLastFrame) : base(payload)
13 {
14 IsLastFrame = isLastFrame;
15 }
16 }
17 }