16 references to Contributors
System.Data.Services (12)
System\Data\Services\Epm\EpmSyndicationContentDeSerializer.cs (6)
77
if (this.Item.
Contributors
.Count > 0)
79
resourceType.SetEpmValue(newRoot, element, this.Item.
Contributors
[0].Email, this);
84
if (this.Item.
Contributors
.Count > 0)
86
resourceType.SetEpmValue(newRoot, element, this.Item.
Contributors
[0].Name, this);
91
if (this.Item.
Contributors
.Count > 0)
93
resourceType.SetEpmValue(newRoot, element, this.Item.
Contributors
[0].Uri, this);
System\Data\Services\Epm\EpmSyndicationContentSerializer.cs (6)
227
if (this.Target.
Contributors
.Count == 0)
229
this.Target.
Contributors
.Add(new SyndicationPerson());
236
this.Target.
Contributors
[0].Email = textPropertyValue;
239
this.Target.
Contributors
[0].Name = textPropertyValue;
242
this.Target.
Contributors
[0].Uri = textPropertyValue;
249
Debug.Assert(this.Target.
Contributors
.Count == 1, "There should be one and only one contributor.");
System.ServiceModel (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
351
result.
Contributors
.Add(ReadPersonFrom(reader, result));
1287
WriteItemContributorsTo(dictWriter, item.
Contributors
);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1413
if (item.
Contributors
.Count > 0)
1418
this.atomSerializer.WriteItemContributorsTo(writer, item.
Contributors
);