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