ContentPrefetcher.IndirectContentUri 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
프리페치할 리소스 목록을 포함하는 잘 구성된 XML 파일의 위치를 지정합니다.
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
속성 값
웹 리소스에 대한 Uri 입니다.
설명
지정된 리소스는 앱에 대한 프리페치 작업의 시작 부분에 다운로드됩니다. 이 URL을 가져오려면 프리페치할 추가 리소스의 서식이 올바른 XML 목록을 반환해야 합니다.
이 리소스는 application/xml 형식이어야 하며 다음 스키마를 준수해야 합니다.
<?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>
예를 들면 다음과 같습니다.
<?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는 프리페치 XML 파일을 호스트하려는 개발자를 위한 옵션입니다. Azure Mobile Services에 대한 자세한 내용은 Microsoft Azure Mobile Apps 사이트를 참조하세요.