public WhenConstructedWithRawValueJson()
 {
     _rawValue = "$format=json";
     _option   = new FormatQueryOption(_rawValue);
 }
 public WhenConstructedWithRawValueApplicationJsonAndMetadataLevel()
 {
     _rawValue = "$format=application/json;odata.metadata=none";
     _option   = new FormatQueryOption(_rawValue);
 }
示例#3
0
 public WhenConstructedWithRawValueXml()
 {
     this.rawValue = "format=xml";
     this.option   = new FormatQueryOption(this.rawValue);
 }
示例#4
0
 public WhenConstructedWithRawValueVCard()
 {
     this.rawValue = "format=text/vcard";
     this.option   = new FormatQueryOption(this.rawValue);
 }
示例#5
0
 public WhenConstructedWithRawValueJson()
 {
     this.rawValue = "format=json";
     this.option   = new FormatQueryOption(this.rawValue);
 }
示例#6
0
 public WhenConstructedWithRawValueAtom()
 {
     this.rawValue = "format=atom";
     this.option   = new FormatQueryOption(this.rawValue);
 }