フィードとストレージの制限に基づいて一連の決定を行います。帯域幅の浪費最小限に抑えるために最大限に
Connect to the Web site, and download the XML source of the feed. The Feed Download Engine downloads feeds and enclosures via HTTP or Secure Hypertext Transfer Protocol (HTTPS) protocols only.
Transform the feed source into the Windows RSS Platform native format, which is based on RSS 2.0 with additional namespace extensions. (The native format is essentially a superset of all supported formats.) To do this, the Windows RSS Platform requires Microsoft XML (MSXML) 3.0 SP5 or later.
Merge new feed items with existing feed items in the feed store.
Purge older items from the feed store when the predetermined maximum number of items have been received.
Optionally, schedule downloads of enclosures with Background Intelligent Transfer Service (BITS).
使用例:http:サーバへの影響を制限するために
を、フィードダウンロードエンジンは、HTTP(RFC3229)でデルタエンコーディングと組み合わせるHTTP条件付きGETを実装しますワールドワイドウェブリンク。この実装により、サーバーは、クライアントにキャッシュされたリソースのまったく新しいインスタンスを転送するのではなく、変更の最小記述を転送できます。エンジンは、Microsoft Win32インターネット(WinInet)のHTTP gzipサポートを使用した圧縮もサポートしています。
成功した同期とは、フィードが正常にダウンロードされ、検証され、ネイティブ形式に変換され、ストアにマージされたことを意味します。 HTTP条件付きGET(If-Modified-Since、If-None-Match、ETagなど)に応答してHTTP 304 Not Modifiedのサーバーレスポンスも成功します。
および除去のための基準を定義する:あなたは、このためのサービスに頼るに開放している場合は
The following properties directly affect the number of items that remain after a synchronization operation.
PubDate—used to determine the "age" of items. If PubDate is not set, LastDownloadTime is used. If the feed is a list, the order of items is predetermined and PubDate (if present) is ignored.
MaxItemCount—a per-feed setting that limits the number of archived items. The feed's ItemCount will never exceed the maximum, even if there are more items that could be downloaded from the feed.
ItemCountLimit—the upper limit of items for any one feed, normally defined as 2500. The value of MaxItemCount may not exceed this limit. Set MaxItemCount to ItemCountLimit to retain the highest possible number of items.
参照
です。確認していただきありがとうございます。 –