4 writes to Email
System.Data.Services (2)
System\Data\Services\Epm\EpmSyndicationContentSerializer.cs (2)
112this.author.Email = textPropertyValue; 236this.Target.Contributors[0].Email = textPropertyValue;
System.ServiceModel (2)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1159result.Email = reader.ReadElementString();
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
860person.Email = email;
7 references to Email
System.Data.Services (2)
System\Data\Services\Epm\EpmSyndicationContentDeSerializer.cs (2)
58resourceType.SetEpmValue(newRoot, element, this.Item.Authors[0].Email, this); 79resourceType.SetEpmValue(newRoot, element, this.Item.Contributors[0].Email, this);
System.ServiceModel (5)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1313if (!string.IsNullOrEmpty(p.Email)) 1315writer.WriteElementString(Atom10Constants.EmailTag, Atom10Constants.Atom10Namespace, p.Email);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (3)
1128if ((this.Feed.Authors.Count == 1) && (this.Feed.Authors[0].Email != null)) 1267if (item.Authors.Count == 1 && !string.IsNullOrEmpty(item.Authors[0].Email)) 1457writer.WriteString(person.Email);