4 writes to Email
System.ServiceModel.Syndication (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1062result.Email = reader.ReadElementString();
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
594person.Email = email;
System\ServiceModel\Syndication\SyndicationPerson.cs (2)
26Email = email; 37Email = source.Email;
6 references to Email
System.ServiceModel.Syndication (6)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1213if (!string.IsNullOrEmpty(p.Email)) 1215writer.WriteElementString(Atom10Constants.EmailTag, Atom10Constants.Atom10Namespace, p.Email);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (3)
880if ((Feed.Authors.Count == 1) && (Feed.Authors[0].Email != null)) 1038if (item.Authors.Count == 1 && !string.IsNullOrEmpty(item.Authors[0].Email)) 1194writer.WriteString(person.Email);
System\ServiceModel\Syndication\SyndicationPerson.cs (1)
37Email = source.Email;