internal override string ToStringInternal()
 {
     return(string.Format("CONTENT[ptag:{0}, {1}{2}, val:{3}]", new object[]
     {
         TraceUtils.DumpPropTag((PropTag)this.PropTag),
         (ContentFlags)this.Flags,
         this.MultiValued ? " (mv)" : string.Empty,
         this.Value
     }));
 }
Beispiel #2
0
 internal override string ToStringInternal()
 {
     return(string.Format("PROPERTY[ptag:{0}, {1}{2}, val:{3}]", new object[]
     {
         TraceUtils.DumpPropTag((PropTag)this.PropTag),
         (Restriction.RelOp) this.RelOp,
         this.MultiValued ? " (mv)" : string.Empty,
         this.Value
     }));
 }
Beispiel #3
0
 internal override string ToStringInternal()
 {
     return(string.Format("EXIST[ptag:{0}]", TraceUtils.DumpPropTag((PropTag)this.PropTag)));
 }
Beispiel #4
0
 internal override string ToStringInternal()
 {
     return(string.Format("BITMASK[ptag:{0}, {1}, mask:0x{2:X}]", TraceUtils.DumpPropTag((PropTag)this.PropTag), (Restriction.RelBmr) this.RelBmr, this.Mask));
 }
 public override string ToString()
 {
     return(string.Format("[{0}{1}:{2}]", this.IsCategory ? "Cat:" : string.Empty, TraceUtils.DumpPropTag((PropTag)this.PropTag), ((SortFlags)this.Flags).ToString()));
 }
Beispiel #6
0
 internal override string ToStringInternal()
 {
     return(string.Format("COMPARE[ptag:{0}, {1}, ptag:{2}]", TraceUtils.DumpPropTag((PropTag)this.TagLeft), (Restriction.RelOp) this.RelOp, TraceUtils.DumpPropTag((PropTag)this.TagLeft)));
 }
 internal override string ToStringInternal()
 {
     return(string.Format("SIZE[ptag:{0}, {1}, size:{2}]", TraceUtils.DumpPropTag((PropTag)this.PropTag), (Restriction.RelOp) this.RelOp, this.Size));
 }