TileBinding.AddImageQuery Property
Set to true to allow Windows to append a query string to the image URI supplied in the tile notification. Use this attribute if your server hosts images and can handle query strings, either by retrieving an image variant based on the query strings or by ignoring the query string and returning the image as specified without the query string. This query string specifies scale, contrast setting, and language; for instance, a value of www.website.com/images/hello.png included in the notification becomes www.website.com/images/hello.png?ms-scale=100\&ms-contrast=standard\&ms-lang=en-us.
Namespace: Microsoft.WindowsAzure.Mobile.Service
Assembly: Microsoft.WindowsAzure.Mobile.Service (in Microsoft.WindowsAzure.Mobile.Service.dll)
Syntax
[DefaultValueAttribute(false)]
[XmlAttributeAttribute("addImageQuery")]
public bool AddImageQuery {
[CompilerGeneratedAttribute]
get;
[CompilerGeneratedAttribute]
set;
}
public:
[DefaultValueAttribute(false)]
[XmlAttributeAttribute("addImageQuery")]
property bool AddImageQuery {
[CompilerGeneratedAttribute]
bool get();
[CompilerGeneratedAttribute]
void set(bool value);
}
[<DefaultValueAttribute(false)>]
[<XmlAttributeAttribute("addImageQuery")>]
member AddImageQuery : bool with get, set
<DefaultValueAttribute(False)>
<XmlAttributeAttribute("addImageQuery")>
Public Property AddImageQuery As Boolean
Property Value
Type: System.Boolean
See Also
TileBinding Class
Microsoft.WindowsAzure.Mobile.Service Namespace
Return to top