public WhenConstructedWithRawValueXml()
 {
     this.rawValue = "format=xml";
     this.option = new FormatQueryOption(this.rawValue);
 }
 public WhenConstructedWithRawValueJson()
 {
     this.rawValue = "format=json";
     this.option = new FormatQueryOption(this.rawValue);
 }
 public WhenConstructedWithRawValueVCard()
 {
     this.rawValue = "format=text/vcard";
     this.option = new FormatQueryOption(this.rawValue);
 }
 public WhenConstructedWithRawValueAtom()
 {
     this.rawValue = "format=atom";
     this.option = new FormatQueryOption(this.rawValue);
 }