5 instantiations of SyndicationCategory
System.Data.Services (1)
System\Data\Services\Serializers\SyndicationSerializer.cs (1)
321item.Categories.Add(new SyndicationCategory(fullName, XmlConstants.DataWebSchemeNamespace, null));
System.ServiceModel (4)
System\ServiceModel\Syndication\InlineCategoriesDocument.cs (1)
76return new SyndicationCategory();
System\ServiceModel\Syndication\SyndicationCategory.cs (1)
83return new SyndicationCategory(this);
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
315return new SyndicationCategory();
System\ServiceModel\Syndication\SyndicationItem.cs (1)
276return new SyndicationCategory();
59 references to SyndicationCategory
System.Data.Services (1)
System\Data\Services\Serializers\SyndicationDeserializer.cs (1)
128SyndicationCategory category = item.Categories.Where(c => c.Scheme == XmlConstants.DataWebSchemeNamespace).FirstOrDefault();
System.ServiceModel (57)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (8)
163internal static void ReadCategory(XmlReader reader, SyndicationCategory category, string version, bool preserveAttributeExtensions, bool preserveElementExtensions, int maxExtensionSize) 254internal static void WriteCategory(XmlWriter writer, SyndicationCategory category, string version) 693void ReadCategory(XmlReader reader, SyndicationCategory category) 698SyndicationCategory ReadCategoryFrom(XmlReader reader, SyndicationFeed feed) 700SyndicationCategory result = CreateCategory(feed); 705SyndicationCategory ReadCategoryFrom(XmlReader reader, SyndicationItem item) 707SyndicationCategory result = CreateCategory(item); 1195void WriteCategoriesTo(XmlWriter writer, Collection<SyndicationCategory> categories)
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (1)
286SyndicationCategory category = CreateCategory(inlineCategories);
System\ServiceModel\Syndication\CategoriesDocument.cs (2)
59public static InlineCategoriesDocument Create(Collection<SyndicationCategory> categories) 64public static InlineCategoriesDocument Create(Collection<SyndicationCategory> categories, bool isFixed, string scheme)
System\ServiceModel\Syndication\FeedUtils.cs (4)
25static internal Collection<SyndicationCategory> CloneCategories(Collection<SyndicationCategory> categories) 31Collection<SyndicationCategory> result = new NullNotAllowedCollection<SyndicationCategory>();
System\ServiceModel\Syndication\InlineCategoriesDocument.cs (8)
18Collection<SyndicationCategory> categories; 26public InlineCategoriesDocument(IEnumerable<SyndicationCategory> categories) 31public InlineCategoriesDocument(IEnumerable<SyndicationCategory> categories, bool isFixed, string scheme) 35this.categories = new NullNotAllowedCollection<SyndicationCategory>(); 36foreach (SyndicationCategory category in categories) 45public Collection<SyndicationCategory> Categories 51this.categories = new NullNotAllowedCollection<SyndicationCategory>(); 74internal protected virtual SyndicationCategory CreateCategory()
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (6)
510SyndicationCategory ReadCategory(XmlReader reader, SyndicationFeed feed) 512SyndicationCategory result = CreateCategory(feed); 517SyndicationCategory ReadCategory(XmlReader reader, SyndicationItem item) 519SyndicationCategory result = CreateCategory(item); 524void ReadCategory(XmlReader reader, SyndicationCategory category) 1065void WriteCategory(XmlWriter writer, SyndicationCategory category)
System\ServiceModel\Syndication\ServiceDocumentFormatter.cs (1)
84protected static SyndicationCategory CreateCategory(InlineCategoriesDocument inlineCategories)
System\ServiceModel\Syndication\SyndicationCategory.cs (2)
41protected SyndicationCategory(SyndicationCategory source) 81public virtual SyndicationCategory Clone()
System\ServiceModel\Syndication\SyndicationFeed.cs (4)
25Collection<SyndicationCategory> categories; 147public Collection<SyndicationCategory> Categories 153this.categories = new NullNotAllowedCollection<SyndicationCategory>(); 313protected internal virtual SyndicationCategory CreateCategory()
System\ServiceModel\Syndication\SyndicationFeedFormatter.cs (10)
59internal static protected SyndicationCategory CreateCategory(SyndicationFeed feed) 65return GetNonNullValue<SyndicationCategory>(feed.CreateCategory(), SR.FeedCreatedNullCategory); 68internal static protected SyndicationCategory CreateCategory(SyndicationItem item) 74return GetNonNullValue<SyndicationCategory>(item.CreateCategory(), SR.ItemCreatedNullCategory); 140internal static protected void LoadElementExtensions(XmlReader reader, SyndicationCategory category, int maxExtensionSize) 193internal static protected bool TryParseAttribute(string name, string ns, string value, SyndicationCategory category, string version) 255internal static protected bool TryParseElement(XmlReader reader, SyndicationCategory category, string version) 300internal static protected void WriteAttributeExtensions(XmlWriter writer, SyndicationCategory category, string version) 345internal static protected void WriteElementExtensions(XmlWriter writer, SyndicationCategory category, string version) 435internal static void LoadElementExtensions(XmlBuffer buffer, XmlDictionaryWriter writer, SyndicationCategory category)
System\ServiceModel\Syndication\SyndicationItem.cs (4)
23Collection<SyndicationCategory> categories; 115public Collection<SyndicationCategory> Categories 121this.categories = new NullNotAllowedCollection<SyndicationCategory>(); 274protected internal virtual SyndicationCategory CreateCategory()
System\ServiceModel\Syndication\SyndicationItemFormatter.cs (7)
91internal static void LoadElementExtensions(XmlBuffer buffer, XmlDictionaryWriter writer, SyndicationCategory category) 106protected static SyndicationCategory CreateCategory(SyndicationItem item) 126protected static void LoadElementExtensions(XmlReader reader, SyndicationCategory category, int maxExtensionSize) 146protected static bool TryParseAttribute(string name, string ns, string value, SyndicationCategory category, string version) 173protected static bool TryParseElement(XmlReader reader, SyndicationCategory category, string version) 193protected static void WriteAttributeExtensions(XmlWriter writer, SyndicationCategory category, string version) 215protected void WriteElementExtensions(XmlWriter writer, SyndicationCategory category, string version)
System.ServiceModel.Web (1)
AssemblyInfo.cs (1)
35[assembly: TypeForwardedTo(typeof(System.ServiceModel.Syndication.SyndicationCategory))]