X13.Periphery.MsPingReq.MsPingReq C# (CSharp) 메소드

MsPingReq() 공개 메소드

public MsPingReq ( byte buf, int start, int end ) : System
buf byte
start int
end int
리턴 System
    public MsPingReq(byte[] buf, int start, int end)
      : base(buf, start, end) {
      int ptr=buf[start+0]==1?start+4:start+2;
      if(1+_length+start-ptr>0) {
        ClientId=enc.GetString(buf, ptr, _length+start-ptr);
      } else {
        ClientId=string.Empty;
      }
    }