コード例 #1
0
 public Validator.Level SetLevel(Validator.Level level)
 {
     Validator.Level oldLevel = this.level;
     this.level = level;
     return(oldLevel);
 }
コード例 #2
0
 private Message Bytes2msg(sbyte[] buf, Validator.Level level)
 {
     return(Bytes2msg((byte[])(Array)buf, level));
 }
コード例 #3
0
ファイル: TestMessage.cs プロジェクト: NeoTim/etch
 public Validator.Level SetLevel(Validator.Level level)
 {
     throw new Exception("The method or operation is not implemented.");
 }
コード例 #4
0
        private Message Bytes2msg(byte[] buf, Validator.Level level)
        {
            BinaryTaggedDataInput btdi = new BinaryTaggedDataInput(vf, "none:");

            return(btdi.ReadMessage(new FlexBuffer(buf)));
        }