4 writes to Email
System.ServiceModel.Syndication (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1035result.Email = reader.ReadElementString();
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
567person.Email = email;
System\ServiceModel\Syndication\SyndicationPerson.cs (2)
26Email = email; 34Email = source.Email;
6 references to Email
System.ServiceModel.Syndication (6)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1186if (!string.IsNullOrEmpty(p.Email)) 1188writer.WriteElementString(Atom10Constants.EmailTag, Atom10Constants.Atom10Namespace, p.Email);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (3)
853if ((Feed.Authors.Count == 1) && (Feed.Authors[0].Email != null)) 1011if (item.Authors.Count == 1 && !string.IsNullOrEmpty(item.Authors[0].Email)) 1167writer.WriteString(person.Email);
System\ServiceModel\Syndication\SyndicationPerson.cs (1)
34Email = source.Email;