56 references to
PresentationFramework (4)
src\Framework\MS\Internal\Annotations\Component\HighlightComponent.cs (4)
514if (content.Attributes[BackgroundAttributeName] != null) 515backgroundColor = GetColor(content.Attributes[BackgroundAttributeName].Value); 516if (content.Attributes[ActiveBackgroundAttributeName] != null) 517activeBackgroundColor = GetColor(content.Attributes[ActiveBackgroundAttributeName].Value);
System.Data.Services.Design (4)
System\Data\EntityModel\DataServiceBuildProvider.cs (4)
441string edmxSchemaFileName = node.Attributes["FileName"].Value; 442string metadataType = node.Attributes["MetadataType"].Value; 475XmlAttribute nameAttribute = p.Attributes["Name"]; 476XmlAttribute valueAttribute = p.Attributes["Value"];
System.ServiceModel (3)
System\ServiceModel\Channels\ReliableSessionBindingElementImporter.cs (1)
244XmlAttribute millisecondsAttribute = wsrmNode.Attributes[ReliableSessionPolicyStrings.Milliseconds];
System\ServiceModel\Description\WsdlImporter.cs (2)
1341wsdlBindingQName = new XmlQualifiedName(policy.Attributes[bindingAttrName].Value, policy.Attributes[bindingAttrNamespace].Value);
System.Web (3)
Configuration\HandlerBase.cs (1)
161XmlAttribute attr = node.Attributes[attrib];
UI\WebControls\XmlDataSourceNodeDescriptor.cs (1)
141XmlAttribute attr = attrs[_name];
UI\WebControls\XmlHierarchyData.cs (1)
237XmlAttribute attr = attrs[_name];
System.Web.DataVisualization (5)
Common\Utilities\XmlSerializer.cs (5)
1843 currentNode.Attributes["_Template_"] != null) 2029 xmlParentNode.FirstChild.Attributes["_Template_"] != null) 2041 string templateString = childNode.Attributes["_Template_"].Value; 2097if (childNode.Attributes["Name"] != null) 2099itemName = childNode.Attributes["Name"].Value;
System.Web.Mobile (29)
UI\MobileControls\Design\Util\WebConfigManager.cs (29)
131if (childNode.Attributes["name"] == null || 132childNode.Attributes["name"].Value == null || 133childNode.Attributes["name"].Value.Length == 0) 138String filterName = childNode.Attributes["name"].Value; 265if (_xmlNode.Attributes["type"] != null) 269_xmlNode.Attributes["argument"] == null && _xmlNode.Attributes["compare"] == null, 278_xmlNode.Attributes["type"] == null && _xmlNode.Attributes["method"] == null, 283_name = _xmlNode.Attributes["name"] == null? 284null : _xmlNode.Attributes["name"].Value; 286_compare = _xmlNode.Attributes["compare"] == null? 287null : _xmlNode.Attributes["compare"].Value; 289_argument = _xmlNode.Attributes["argument"] == null? 290null : _xmlNode.Attributes["argument"].Value; 292_type = _xmlNode.Attributes["type"] == null? 293null : _xmlNode.Attributes["type"].Value; 295_method = _xmlNode.Attributes["method"] == null? 296null : _xmlNode.Attributes["method"].Value; 313if (_xmlNode.Attributes["name"] == null) 317_xmlNode.Attributes["name"].Value = Name; 326if (_xmlNode.Attributes["compare"] == null) 330_xmlNode.Attributes["compare"].Value = Compare; 332if (_xmlNode.Attributes["argument"] == null) 336_xmlNode.Attributes["argument"].Value = Argument; 346if (_xmlNode.Attributes["type"] == null) 350_xmlNode.Attributes["type"].Value = Type; 352if (_xmlNode.Attributes["method"] == null) 356_xmlNode.Attributes["method"].Value = Method;
System.Web.Services (1)
System\Web\Services\Description\ServiceDescription.cs (1)
1560requiredAttr = element.Attributes["required"];
System.Windows.Forms (1)
winforms\Managed\System\WinForms\TableLayoutSettingsTypeConverter.cs (1)
138XmlAttribute attr = node.Attributes[attribute];
System.Windows.Forms.DataVisualization (5)
Common\Utilities\XmlSerializer.cs (5)
1843 currentNode.Attributes["_Template_"] != null) 2029 xmlParentNode.FirstChild.Attributes["_Template_"] != null) 2041 string templateString = childNode.Attributes["_Template_"].Value; 2097if (childNode.Attributes["Name"] != null) 2099itemName = childNode.Attributes["Name"].Value;
System.Xml (1)
System\Xml\Dom\XmlElement.cs (1)
256return Attributes[name];