public override string ToString()
        {
            object field = this.Key.Field;

            SilentOrbit.ProtocolBuffers.Key key = this.Key;
            return(string.Format("[KeyValue: {0}, {1}, {2} bytes]", field, key.WireType, (int)this.Value.Length));
        }
 public KeyValue(SilentOrbit.ProtocolBuffers.Key key, byte[] value)
 {
     this.Key   = key;
     this.Value = value;
 }