public PayloadService(IPayloadLengthRule[] rules,IByteHelper byteHelper) { _rules = rules; _byteHelper = byteHelper; }
public Hybi10FrameFactory(IByteHelper byteHelper,IPayloadService payloadService) { _payloadService = payloadService; _byteHelper = byteHelper; }
protected PayloadLengthRuleBase(IByteHelper byteHelper,short payloadStartPositionWithouMaskingKey) { ByteHelper = byteHelper; _payloadStartPositionWithouMaskingKey = payloadStartPositionWithouMaskingKey; _payloadStartPosition = _payloadStartPosition = (short)(_payloadStartPositionWithouMaskingKey + MaskingKeyLength); }
public EqualTo126(IByteHelper byteHelper) : base(byteHelper,PayloadStartPositionWithoutMaskingKey) { }
public LessThan126(IByteHelper byteHelper) : base(byteHelper,PayloadStartPositionWithoutMaskingKey) { }