X13.Periphery.MsRegister.MsRegister C# (CSharp) Метод

MsRegister() публичный Метод

public MsRegister ( byte buf, int start, int end ) : System
buf byte
start int
end int
Результат System
    public MsRegister(byte[] buf, int start, int end)
      : base(buf, start, end) {
      int ptr=buf[start+0]==1?start+4:start+2;
      TopicId=(ushort)((buf[ptr++]<<8) | buf[ptr++]);
      MessageId=(ushort)((buf[ptr++]<<8) | buf[ptr++]);
      TopicPath=enc.GetString(buf, ptr, _length+start-ptr);
    }
    public override byte[] GetBytes() {

Same methods

MsRegister::MsRegister ( ushort topicId, string topicPath ) : System