예제 #1
0
 public PayloadService(IPayloadLengthRule[] rules,IByteHelper byteHelper)
 {
     _rules = rules;
     _byteHelper = byteHelper;
 }
예제 #2
0
 public Hybi10FrameFactory(IByteHelper byteHelper,IPayloadService payloadService)
 {
     _payloadService = payloadService;
     _byteHelper = byteHelper;
 }
예제 #3
0
 protected PayloadLengthRuleBase(IByteHelper byteHelper,short payloadStartPositionWithouMaskingKey)
 {
     ByteHelper = byteHelper;
     _payloadStartPositionWithouMaskingKey = payloadStartPositionWithouMaskingKey;
     _payloadStartPosition = _payloadStartPosition = (short)(_payloadStartPositionWithouMaskingKey + MaskingKeyLength);
 }
예제 #4
0
파일: EqualTo126.cs 프로젝트: roffster/WuSS
 public EqualTo126(IByteHelper byteHelper)
     : base(byteHelper,PayloadStartPositionWithoutMaskingKey)
 {
 }
예제 #5
0
 public LessThan126(IByteHelper byteHelper)
     : base(byteHelper,PayloadStartPositionWithoutMaskingKey)
 {
 }