3 writes to attributeExtensions
System.ServiceModel (3)
System\ServiceModel\Syndication\ExtensibleSyndicationObject.cs (3)
23this.attributeExtensions = new Dictionary<XmlQualifiedName, string>(); 31this.attributeExtensions = null; 49this.attributeExtensions = new Dictionary<XmlQualifiedName, string>();
9 references to attributeExtensions
System.ServiceModel (9)
System\ServiceModel\Syndication\ExtensibleSyndicationObject.cs (9)
21if (source.attributeExtensions != null) 24foreach (XmlQualifiedName key in source.attributeExtensions.Keys) 26this.attributeExtensions.Add(key, source.attributeExtensions[key]); 47if (this.attributeExtensions == null) 51return this.attributeExtensions; 110if (this.attributeExtensions != null) 112foreach (XmlQualifiedName qname in this.attributeExtensions.Keys) 114string value = this.attributeExtensions[qname];