ContentPrefetcher.IndirectContentUri Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the location of a well-formed XML file that contains a list of resources to be prefetched.
public:
static property Uri ^ IndirectContentUri { Uri ^ get(); void set(Uri ^ value); };
static Uri IndirectContentUri();
static void IndirectContentUri(Uri value);
public static System.Uri IndirectContentUri { get; set; }
var uri = ContentPrefetcher.indirectContentUri;
ContentPrefetcher.indirectContentUri = uri;
Public Shared Property IndirectContentUri As Uri
Property Value
A Uri for a web resource.
Remarks
The specified resource will be downloaded at the beginning of a prefetch task for an app. Fetching this URL must return a well formatted XML list of additional resources to prefetch.
This resource must be of type application/xml and must adhere to the following schema:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="PrefetchUris">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="1" name="uri" type="xs:anyURI" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
For example:
<?xml version="1.0" encoding="utf-8"?>
<prefetchUris>
<uri>http://example.com/2013-02-28-headlines.json</uri>
<uri>http://example.com/2013-02-28-img1295.jpg</uri>
<uri>http://example.com/2013-02-28-img1296.jpg</uri>
</prefetchUris>
Azure Mobile Services is an option for developers wishing to host a prefetch XML file. To learn more about Azure Mobile Services, see the Microsoft Azure Mobile Apps site.