29 overrides of GetAttribute
PresentationBuildTasks (1)
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
87public override string GetAttribute( string name, string namespaceURI ) {
System.Activities (1)
System\Activities\Debugger\XmlWrappingReader.cs (1)
188public override string GetAttribute(string name, string namespaceURI)
System.Data (1)
fx\src\data\System\Data\xmlsaver.cs (1)
2936public override string GetAttribute( string localName, string namespaceURI ) {
System.Data.Services.Client (1)
System\Data\Services\Client\Xml\XmlWrappingReader.cs (1)
358public override string GetAttribute(string name, string namespaceURI)
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\ReaderOutput.cs (1)
173public override string GetAttribute(string localName, string namespaceURI) {
System.IdentityModel (3)
System\IdentityModel\DelegatingXmlDictionaryReader.cs (1)
275public override string GetAttribute(string name, string namespaceURI)
System\IdentityModel\IdentityModelWrappedXmlDictionaryReader.cs (1)
96public override string GetAttribute( string name, string namespaceUri )
System\IdentityModel\WrappedXmlDictionaryReader.cs (1)
280public override string GetAttribute(string name, string namespaceUri)
System.Runtime.Serialization (6)
System\Runtime\Serialization\ExtensionDataReader.cs (1)
180public override string GetAttribute(string name, string namespaceURI)
System\Runtime\Serialization\XmlSerializableReader.cs (1)
99public override string GetAttribute(string name, string namespaceURI) { return InnerReader.GetAttribute(name, namespaceURI); }
System\Xml\XmlBaseReader.cs (1)
664public override string GetAttribute(string localName, string namespaceUri)
System\Xml\XmlDictionaryReader.cs (1)
1415public override string GetAttribute(string name, string namespaceUri)
System\Xml\XmlMtomReader.cs (2)
533public override string GetAttribute(string name, string ns) 1469public override string GetAttribute(string name, string ns)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\XmlByteStreamReader.cs (1)
216public override string GetAttribute(string name, string namespaceURI)
System.Xml (12)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
592public override string GetAttribute(string name, string ns) {
System\Xml\Core\XmlAsyncCheckReader.cs (1)
358public override string GetAttribute(string name, string namespaceURI) {
System\Xml\Core\XmlTextReader.cs (1)
172public override string GetAttribute( string localName, string namespaceURI ) {
System\Xml\Core\XmlTextReaderImpl.cs (1)
1018public override string GetAttribute( string localName, string namespaceURI ) {
System\Xml\Core\XmlValidatingReader.cs (1)
116public override string GetAttribute( string localName, string namespaceURI ) {
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
396public override string GetAttribute( string localName, string namespaceURI ) {
System\Xml\Core\XmlWrappingReader.cs (1)
68public override string GetAttribute( string name, string namespaceURI ) {
System\Xml\Core\XsdCachingReader.cs (1)
225public override string GetAttribute( string name, string namespaceURI ) {
System\Xml\Core\XsdValidatingReader.cs (1)
897public override string GetAttribute(string name, string namespaceURI) {
System\Xml\Dom\XmlNodeReader.cs (1)
1140public override string GetAttribute(string name, string namespaceURI) {
System\Xml\Serialization\XmlCountingReader.cs (1)
66public override string GetAttribute(string name, string namespaceURI) { return innerReader.GetAttribute(name, namespaceURI); }
System\Xml\XPath\XPathNavigatorReader.cs (1)
401public override string GetAttribute( string localName, string namespaceURI ) {
System.Xml.Linq (1)
System\Xml\Linq\XLinq.cs (1)
8457public override string GetAttribute(string localName, string namespaceName) {
WindowsBase (1)
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
87public override string GetAttribute( string name, string namespaceURI ) {
160 references to GetAttribute
PresentationBuildTasks (3)
Base\System\Windows\Markup\XmlCompatibilityReader.cs (1)
450result = Reader.GetAttribute(localName, namespaceURI);
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
88return _reader.GetAttribute( name, namespaceURI );
Framework\System\Windows\Markup\XamlReaderHelper.cs (1)
3980if( XmlReader.GetAttribute(DefinitionUid, DefinitionNamespaceURI) != null)
PresentationFramework (1)
src\Framework\MS\Internal\AppModel\XappLauncher.cs (1)
469string publisher = rdr.GetAttribute("publisher", "urn:schemas-microsoft-com:asm.v2");
System.Activities (1)
System\Activities\Debugger\XmlWrappingReader.cs (1)
190return this.baseReader.GetAttribute(name, namespaceURI);
System.Data (41)
fx\src\data\System\Data\Common\ObjectStorage.cs (2)
308string typeName = xmlReader.GetAttribute(Keywords.MSD_INSTANCETYPE, Keywords.MSDNS); 310string xsdTypeName = xmlReader.GetAttribute(Keywords.TYPE, Keywords.XSINS); // this xsd type: Base type polymorphism
fx\src\data\System\Data\Common\SQLTypes\SqlUDTStorage.cs (2)
161string typeName = xmlReader.GetAttribute(Keywords.MSD_INSTANCETYPE, Keywords.MSDNS); 163string xsdTypeName = xmlReader.GetAttribute(Keywords.MSD_INSTANCETYPE, Keywords.XSINS); // this xsd type
fx\src\data\System\Data\DataSet.cs (2)
188string attribValue = reader.GetAttribute(Keywords.MSD_SCHEMASERIALIZATIONMODE, Keywords.MSDNS); 1676string attribValue = reader.GetAttribute(Keywords.MSD_FRAGMENTCOUNT, Keywords.MSDNS); // this must not move the position
fx\src\data\System\Data\SQLTypes\SQLBinary.cs (1)
474string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
569string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (1)
569string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLBytes.cs (1)
527 string isNull = r.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLChars.cs (1)
525 string isNull = r.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (1)
626string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
3257string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
489string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLGuid.cs (1)
365string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
578string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
590string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
644string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
630string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
493string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
1006string isNull = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\SQLTypes\SqlXml.cs (1)
218 string isNull = r.GetAttribute("nil", XmlSchema.InstanceNamespace);
fx\src\data\System\Data\XmlDataLoader.cs (3)
1087xsiNilString = dataReader.GetAttribute(Keywords.XSI_NIL, Keywords.XSINS); 1099xsiTypeString = dataReader.GetAttribute(Keywords.TYPE, Keywords.XSINS); 1100typeName = dataReader.GetAttribute(Keywords.MSD_INSTANCETYPE, Keywords.MSDNS);
fx\src\data\System\Data\XMLDiffLoader.cs (15)
95diffId = ssync.GetAttribute(Keywords.DIFFID, Keywords.DFFNS); 96bool hasErrors = (bool) (ssync.GetAttribute(Keywords.HASERRORS, Keywords.DFFNS) == Keywords.TRUE); 143diffId = ssync.GetAttribute(Keywords.DIFFID, Keywords.DFFNS); 144bool hasErrors = (bool) (ssync.GetAttribute(Keywords.HASERRORS, Keywords.DFFNS) == Keywords.TRUE); 184string diffId = ssync.GetAttribute(Keywords.DIFFID, Keywords.DFFNS); 186string rowError = ssync.GetAttribute(Keywords.MSD_ERROR, Keywords.DFFNS); 196string colError = ssync.GetAttribute(Keywords.MSD_ERROR, Keywords.DFFNS); 221string diffId = ssync.GetAttribute(Keywords.DIFFID, Keywords.DFFNS); 233string rowError = ssync.GetAttribute(Keywords.MSD_ERROR, Keywords.DFFNS); 244string colError = ssync.GetAttribute(Keywords.MSD_ERROR, Keywords.DFFNS); 293value = row.GetAttribute(Keywords.ROWORDER, Keywords.MSDNS); 309value = row.GetAttribute("hidden"+col.EncodedColumnName, Keywords.MSDNS); 312value = row.GetAttribute(col.EncodedColumnName, col.Namespace); 357bool isPolymorphism = (column.DataType == typeof(Object)|| (row.GetAttribute(Keywords.MSD_INSTANCETYPE, Keywords.MSDNS) != null) || 358(row.GetAttribute(Keywords.TYPE, Keywords.XSINS) != null)) ;
fx\src\data\System\Data\xmlsaver.cs (1)
2937return _xmlreader.GetAttribute( localName, namespaceURI );
System.Data.Services (3)
System\Data\Services\Serializers\PlainXmlDeserializer.cs (2)
264string elementValue = reader.GetAttribute(XmlConstants.AtomNullAttributeName, XmlConstants.DataWebMetadataNamespace); 469string typeName = reader.GetAttribute(XmlConstants.AtomTypeAttributeName, XmlConstants.DataWebMetadataNamespace);
System\Data\Services\WebUtil.cs (1)
1456return reader.GetAttribute(attributeName, namespaceUri) ?? reader.GetAttribute(attributeName);
System.Data.Services.Client (2)
System\Data\Services\Client\Xml\XmlWrappingReader.cs (1)
360return this.reader.GetAttribute(name, namespaceURI);
System\Data\Services\Client\XmlUtil.cs (1)
229return reader.GetAttribute(attributeName, namespaceUri) ?? reader.GetAttribute(attributeName);
System.IdentityModel (67)
System\IdentityModel\DelegatingXmlDictionaryReader.cs (1)
277return _innerReader.GetAttribute(name, namespaceURI);
System\IdentityModel\EncryptedKeyElement.cs (1)
141_recipient = reader.GetAttribute( XmlEncryptionConstants.Attributes.Recipient, null );
System\IdentityModel\EncryptedTypeElement.cs (4)
143_id = reader.GetAttribute(XmlEncryptionConstants.Attributes.Id, null); 144_type = reader.GetAttribute(XmlEncryptionConstants.Attributes.Type, null); 145_mimeType = reader.GetAttribute(XmlEncryptionConstants.Attributes.MimeType, null); 146_encoding = reader.GetAttribute(XmlEncryptionConstants.Attributes.Encoding, null);
System\IdentityModel\EncryptionMethodElement.cs (1)
40_algorithm = reader.GetAttribute( XmlEncryptionConstants.Attributes.Algorithm, null );
System\IdentityModel\IdentityModelWrappedXmlDictionaryReader.cs (1)
98return _reader.GetAttribute( name, namespaceUri );
System\IdentityModel\Metadata\MetadataSerializer.cs (19)
322string contactType = reader.GetAttribute(Saml2MetadataConstants.Attributes.ContactType, null); 446string claimType = reader.GetAttribute(WSFederationMetadataConstants.Attributes.Uri, null); 894string binding = reader.GetAttribute(Saml2MetadataConstants.Attributes.Binding, null); 902string location = reader.GetAttribute(Saml2MetadataConstants.Attributes.Location, null); 910string indexStr = reader.GetAttribute(Saml2MetadataConstants.Attributes.EndpointIndex, null); 919string responseLocation = reader.GetAttribute(Saml2MetadataConstants.Attributes.ResponseLocation, null); 931string isDefaultString = reader.GetAttribute(Saml2MetadataConstants.Attributes.EndpointIsDefault, null); 984string use = reader.GetAttribute(Saml2MetadataConstants.Attributes.Use, null); 1063string lang = reader.GetAttribute(LanguageLocalName, LanguageNamespaceUri); 1122string lang = reader.GetAttribute(LanguageLocalName, LanguageNamespaceUri); 1328string binding = reader.GetAttribute(Saml2MetadataConstants.Attributes.Binding, null); 1336string location = reader.GetAttribute(Saml2MetadataConstants.Attributes.Location, null); 1344string responseLocation = reader.GetAttribute(Saml2MetadataConstants.Attributes.ResponseLocation, null); 1397string validUntilString = reader.GetAttribute(Saml2MetadataConstants.Attributes.ValidUntil, null); 1409string errorUrlString = reader.GetAttribute(Saml2MetadataConstants.Attributes.ErrorUrl, null); 1421string protocols = reader.GetAttribute(Saml2MetadataConstants.Attributes.ProtocolsSupported, null); 1714string displayName = reader.GetAttribute(Saml2MetadataConstants.Attributes.ServiceDisplayName, null); 1719string description = reader.GetAttribute(Saml2MetadataConstants.Attributes.ServiceDescription, null); 1839string tokenType = reader.GetAttribute(WSFederationMetadataConstants.Attributes.Uri, null);
System\IdentityModel\SignedXml.cs (3)
376this.Id = reader.GetAttribute(UtilityStrings.IdAttribute, null); 955Id = effectiveReader.GetAttribute(WSSecurityUtilityConstants.Attributes.Id, null); 1232this.Id = reader.GetAttribute(UtilityStrings.IdAttribute, null);
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (8)
531value = reader.GetAttribute(WSC.Attributes.Nonce, WSC.Namespace); 536value = reader.GetAttribute(WSC.Attributes.Length, WSC.Namespace); 550value = reader.GetAttribute(WSC13.Attributes.Nonce, WSC13.Namespace); 555value = reader.GetAttribute(WSC13.Attributes.Length, WSC13.Namespace); 859string tokenType = reader.GetAttribute(WSSE11.Attributes.TokenType, WSSE11.Namespace); 3015string originalIssuer = reader.GetAttribute(Saml2Constants.Attributes.OriginalIssuer, ClaimType2009Namespace); 3019originalIssuer = reader.GetAttribute(Saml2Constants.Attributes.OriginalIssuer, ProductConstants.NamespaceUri); 3046string attributeValueXsiTypeSuffixWithLocalPrefix = reader.GetAttribute("type", XmlSchema.InstanceNamespace);
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (19)
1574string ns = reader.GetAttribute(SamlConstants.AttributeNames.Namespace, null); 1922string time = reader.GetAttribute(SamlConstants.AttributeNames.NotBefore, null); 1929time = reader.GetAttribute(SamlConstants.AttributeNames.NotOnOrAfter, null); 2318subject.NameFormat = reader.GetAttribute(SamlConstants.AttributeNames.NameIdentifierFormat, null); 2319subject.NameQualifier = reader.GetAttribute(SamlConstants.AttributeNames.NameIdentifierNameQualifier, null); 2602attribute.Name = reader.GetAttribute(SamlConstants.AttributeNames.AttributeName, null); 2608attribute.Namespace = reader.GetAttribute(SamlConstants.AttributeNames.AttributeNamespace, null); 2620string originalIssuer = reader.GetAttribute(SamlConstants.AttributeNames.OriginalIssuer, ClaimType2009Namespace); 2624originalIssuer = reader.GetAttribute(SamlConstants.AttributeNames.OriginalIssuer, ProductConstants.NamespaceUri); 2643string attributeValueXsiTypeSuffixWithLocalPrefix = reader.GetAttribute("type", XmlSchema.InstanceNamespace); 2856string authInstance = reader.GetAttribute(SamlConstants.AttributeNames.AuthenticationInstant, null); 2864authnStatement.AuthenticationMethod = reader.GetAttribute(SamlConstants.AttributeNames.AuthenticationMethod, null); 2885authnStatement.DnsAddress = reader.GetAttribute(SamlConstants.AttributeNames.SubjectLocalityDNSAddress, null); 2886authnStatement.IPAddress = reader.GetAttribute(SamlConstants.AttributeNames.SubjectLocalityIPAddress, null); 2989string authKind = reader.GetAttribute(SamlConstants.AttributeNames.AuthorityKind, null); 3019authorityBinding.Binding = reader.GetAttribute(SamlConstants.AttributeNames.Binding, null); 3025authorityBinding.Location = reader.GetAttribute(SamlConstants.AttributeNames.Location, null); 3151authzStatement.Resource = reader.GetAttribute(SamlConstants.AttributeNames.Resource, null); 3157string decisionString = reader.GetAttribute(SamlConstants.AttributeNames.Decision, null);
System\IdentityModel\Tokens\SessionSecurityTokenHandler.cs (1)
388string id = dicReader.GetAttribute(WSUtilityConstants.Attributes.IdAttribute, WSUtilityConstants.NamespaceURI);
System\IdentityModel\Tokens\UserNameSecurityTokenHandler.cs (2)
120id = reader.GetAttribute(WSUtilityConstants.Attributes.IdAttribute, WSUtilityConstants.NamespaceURI); 131string type = reader.GetAttribute(WSSecurity10Constants.Attributes.Type, null);
System\IdentityModel\Tokens\X509SecurityTokenHandler.cs (4)
358string valueTypeUri = reader.GetAttribute(WSSecurity10Constants.Attributes.ValueType, null); 439string valueTypeUri = dicReader.GetAttribute(WSSecurity10Constants.Attributes.ValueType, null); 454string wsuId = dicReader.GetAttribute(WSSecurityUtilityConstants.Attributes.Id, WSSecurityUtilityConstants.Namespace); 455string encoding = dicReader.GetAttribute(WSSecurity10Constants.Attributes.EncodingType, null);
System\IdentityModel\WrappedXmlDictionaryReader.cs (1)
282return this.reader.GetAttribute(name, namespaceUri);
System\IdentityModel\XmlUtil.cs (2)
127string xsiType = reader.GetAttribute("type", XmlSchema.InstanceNamespace); 147string xsiNil = reader.GetAttribute("nil", XmlSchema.InstanceNamespace);
System.Runtime.Serialization (7)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
55return isEndOfEmptyElement ? null : reader.GetAttribute(name, namespaceUri);
System\Runtime\Serialization\XmlSerializableReader.cs (1)
99public override string GetAttribute(string name, string namespaceURI) { return InnerReader.GetAttribute(name, namespaceURI); }
System\Xml\XmlDictionaryReader.cs (2)
366return GetAttribute(XmlDictionaryString.GetString(localName), XmlDictionaryString.GetString(namespaceUri)); 1417return reader.GetAttribute(name, namespaceUri);
System\Xml\XmlMtomReader.cs (1)
535return xmlReader.GetAttribute(name, ns);
System\Xml\XmlMtomWriter.cs (2)
485contentType = contentTypeReader.GetAttribute(MtomGlobals.MimeContentTypeLocalName, MtomGlobals.MimeContentTypeNamespace200406); 488contentType = contentTypeReader.GetAttribute(MtomGlobals.MimeContentTypeLocalName, MtomGlobals.MimeContentTypeNamespace200505);
System.ServiceModel (10)
System\ServiceModel\Channels\Message.cs (1)
1804return reader.GetAttribute(localName, ns);
System\ServiceModel\Channels\MessageHeaders.cs (2)
1026string value = reader.GetAttribute(localName, ns); 1047string value = reader.GetAttribute(localName, ns);
System\ServiceModel\Diagnostics\ActivityIdHeader.cs (1)
91correlationId = Fx.CreateGuid(reader.GetAttribute("CorrelationId", null));
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
715string type = reader.GetAttribute(Atom10Constants.TypeTag, string.Empty); 727string src = reader.GetAttribute(Atom10Constants.SourceTag, string.Empty);
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (1)
147string link = reader.GetAttribute(App10Constants.Href, string.Empty);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (3)
644string permalinkString = reader.GetAttribute(Rss20Constants.IsPermaLinkTag, Rss20Constants.Rss20Namespace); 870string version = reader.GetAttribute(Rss20Constants.VersionTag, Rss20Constants.Rss20Namespace); 877string tmp = reader.GetAttribute("base", Atom10FeedFormatter.XmlNs);
System.Web.Services (1)
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
733lang = reader.GetAttribute(Soap.Attribute.Lang, Soap.XmlNamespace);
System.Xml (22)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
594return this.textXmlReader.GetAttribute(name, ns);
System\Xml\Core\XmlAsyncCheckReader.cs (1)
360return coreReader.GetAttribute(name, namespaceURI);
System\Xml\Core\XmlReader.cs (1)
560return GetAttribute(name, namespaceURI);
System\Xml\Core\XmlSubtreeReader.cs (1)
227string attr = reader.GetAttribute( name, namespaceURI );
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
397return coreReader.GetAttribute( localName, namespaceURI );
System\Xml\Core\XmlWrappingReader.cs (1)
69return reader.GetAttribute( name, namespaceURI );
System\Xml\Core\XsdValidatingReader.cs (1)
898string attValue = coreReader.GetAttribute(name, namespaceURI);
System\Xml\Serialization\XmlCountingReader.cs (1)
66public override string GetAttribute(string name, string namespaceURI) { return innerReader.GetAttribute(name, namespaceURI); }
System\Xml\Serialization\XmlSerializationReader.cs (14)
273string type = r.GetAttribute(typeID, instanceNsID); 275type = r.GetAttribute(typeID, instanceNs2000ID); 277type = r.GetAttribute(typeID, instanceNs1999ID); 819string isNull = r.GetAttribute(nilID, instanceNsID); 821isNull = r.GetAttribute(nullID, instanceNsID); 823isNull = r.GetAttribute(nullID, instanceNs2000ID); 825isNull = r.GetAttribute(nullID, instanceNs1999ID); 931string arrayType = r.GetAttribute(arrayTypeID, soapNsID); 1377string href = soap12 ? r.GetAttribute("ref", Soap12.Encoding) : r.GetAttribute("href"); 1498string itemType = r.GetAttribute(itemTypeID, soap12NsID); 1499string arraySize = r.GetAttribute(arraySizeID, soap12NsID); 1510string arrayType = r.GetAttribute(arrayTypeID, soapNsID); 1732string id = soap12 ? r.GetAttribute("id", Soap12.Encoding) : r.GetAttribute("id", null);
WindowsBase (2)
Base\System\Windows\Markup\XmlCompatibilityReader.cs (1)
450result = Reader.GetAttribute(localName, namespaceURI);
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
88return _reader.GetAttribute( name, namespaceURI );