5 writes to Title
System.Data.Services (2)
System\Data\Services\Epm\EpmSyndicationContentSerializer.cs (1)
141
this.Target.
Title
= new TextSyndicationContent(textPropertyValue, contentKind);
System\Data\Services\Serializers\SyndicationSerializer.cs (1)
472
target.
Title
= new TextSyndicationContent(String.Empty);
System.ServiceModel (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
383
result.
Title
= ReadTextContentFrom(reader, "//atom:feed/atom:entry/atom:title[@type]");
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
618
result.
Title
= new TextSyndicationContent(reader.ReadElementString());
System\ServiceModel\Syndication\SyndicationItem.cs (1)
55
this.
Title
= new TextSyndicationContent(title);
5 references to Title
System.Data.Services (2)
System\Data\Services\Epm\EpmSyndicationContentDeSerializer.cs (2)
130
if (this.Item.
Title
!= null)
132
resourceType.SetEpmValue(newRoot, element, this.Item.
Title
.Text, this);
System.ServiceModel (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1276
TextSyndicationContent title = item.
Title
?? new TextSyndicationContent(string.Empty);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1292
if (item.
Title
!= null)
1294
writer.WriteElementString(Rss20Constants.TitleTag, item.
Title
.Text);