3 writes to Scheme
System.ServiceModel (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
177category.Scheme = reader.Value;
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (1)
290category.Scheme = inlineCategories.Scheme;
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
540category.Scheme = val;
6 references to Scheme
System.Data.Services (1)
System\Data\Services\Serializers\SyndicationDeserializer.cs (1)
128SyndicationCategory category = item.Categories.Where(c => c.Scheme == XmlConstants.DataWebSchemeNamespace).FirstOrDefault();
System.ServiceModel (5)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
267if (!string.IsNullOrEmpty(category.Scheme) && !category.AttributeExtensions.ContainsKey(Atom10Scheme)) 269writer.WriteAttributeString(Atom10Constants.SchemeTag, category.Scheme);
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (1)
288if (category.Scheme == null)
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1073if (!string.IsNullOrEmpty(category.Scheme) && !category.AttributeExtensions.ContainsKey(Rss20Domain)) 1075writer.WriteAttributeString(Rss20Constants.DomainTag, Rss20Constants.Rss20Namespace, category.Scheme);