Пример #1
0
        public JaegerTag(
            string key,
            JaegerTagType vType,
            string vStr    = null,
            double?vDouble = null,
            bool?vBool     = null,
            long?vLong     = null,
            byte[] vBinary = null)
        {
            this.Key   = key;
            this.VType = vType;

            this.VStr    = vStr;
            this.VDouble = vDouble;
            this.VBool   = vBool;
            this.VLong   = vLong;
            this.VBinary = vBinary;
        }
Пример #2
0
 public JaegerTag(string key, JaegerTagType vType)
     : this()
 {
     this.Key   = key;
     this.VType = vType;
 }