SyndicationItem.SourceFeed Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le flux source de l’élément de syndication.
public:
property System::ServiceModel::Syndication::SyndicationFeed ^ SourceFeed { System::ServiceModel::Syndication::SyndicationFeed ^ get(); void set(System::ServiceModel::Syndication::SyndicationFeed ^ value); };
public System.ServiceModel.Syndication.SyndicationFeed SourceFeed { get; set; }
member this.SourceFeed : System.ServiceModel.Syndication.SyndicationFeed with get, set
Public Property SourceFeed As SyndicationFeed
Valeur de propriété
Instance SyndicationFeed où se trouve l'élément de syndication.
Exemples
Le code XML suivant montre comment la propriété SourceFeed est sérialisée en Atom 1.0.
<source>
<title type="text">MyFeed</title>
<subtitle type="text">This is my feed</subtitle>
<link rel="alternate" href="http://myfeed/" />
</source>
Le code XML suivant montre comment la propriété SourceFeed est sérialisée en RSS 2.0.
<source>MyFeed</source>
Remarques
Cette propriété n’est pas automatiquement définie lorsque vous ajoutez un SyndicationItem à un SyndicationFeed : vous devez le définir explicitement. Lorsqu'elle est sérialisée vers Atom 1.0 ou RSS 2.0, cette propriété est écrite dans un élément <source>
. Le contenu de cet élément varie selon le format employé pour la sérialisation.