Esempio n. 1
0
 public ICQOperatorElementValue Value(object value, CQValueType type)
 {
     _elements.Add(CQ.Value(value, type));
     return this;
 }
Esempio n. 2
0
File: CQ.cs Progetto: Sowz/CodeCaml
 /// <summary>
 ///     Inserts &lt;Value&gt; element with specified value and type.
 /// </summary>
 public static CQValueElement Value(object value, CQValueType type)
 {
     return new CQValueElement(value.ToString(), type.ToString());
 }
Esempio n. 3
0
 ICQFieldSetup ICQFieldSetup.Type(CQValueType type)
 {
     Type = type;
     return this;
 }