1 override of GetAttribute
dotnet-svcutil-lib (1)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (1)
656public override string GetAttribute(XmlDictionaryString localName, XmlDictionaryString namespaceUri)
36 references to GetAttribute
dotnet-svcutil-lib (36)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\WSSecurityJan2004.cs (8)
273string valueType = reader.GetAttribute(XD.SecurityJan2004Dictionary.ValueType, null); 405string uri = reader.GetAttribute(XD.SecurityJan2004Dictionary.URI, null); 416string uri = reader.GetAttribute(XD.SecurityJan2004Dictionary.URI, null); 417string tokenTypeUri = reader.GetAttribute(XD.SecurityJan2004Dictionary.ValueType, null); 473string valueType = reader.GetAttribute(XD.SecurityJan2004Dictionary.ValueType, null); 525string valueType = reader.GetAttribute(XD.SecurityJan2004Dictionary.ValueType, null); 620return reader.GetAttribute(XD.XmlEncryptionDictionary.Id, null); 624return reader.GetAttribute(XD.UtilityDictionary.IdAttribute, XD.UtilityDictionary.Namespace);
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\WSSecurityXXX2005.cs (1)
65return reader.GetAttribute(XD.SecurityXXX2005Dictionary.TokenTypeAttribute, XD.SecurityXXX2005Dictionary.Namespace);
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\XmlEncApr2001.cs (1)
62encryptionMethod = reader.GetAttribute(XD.XmlEncryptionDictionary.AlgorithmAttribute, null);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageHeader.cs (4)
199string mustUnderstandString = reader.GetAttribute(XD.MessageDictionary.MustUnderstand, version.Envelope.DictionaryNamespace); 212actor = reader.GetAttribute(version.Envelope.DictionaryActor, version.Envelope.DictionaryNamespace); 218string relayString = reader.GetAttribute(XD.Message12Dictionary.Relay, version.Envelope.DictionaryNamespace); 233string refParam = reader.GetAttribute(XD.AddressingDictionary.IsReferenceParameter, version.Addressing.DictionaryNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\EncryptedKey.cs (6)
210_encoding = reader.GetAttribute(EncodingAttribute, null); 211_id = reader.GetAttribute(XD.XmlEncryptionDictionary.Id, null) ?? SecurityUniqueId.Create().Value; 212_wsuId = reader.GetAttribute(XD.XmlEncryptionDictionary.Id, XD.UtilityDictionary.Namespace) ?? SecurityUniqueId.Create().Value; 213_mimeType = reader.GetAttribute(MimeTypeAttribute, null); 214_type = reader.GetAttribute(TypeAttribute, null); 377this.algorithm = reader.GetAttribute(XD.XmlSignatureDictionary.Algorithm, null);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\EncryptedType.cs (1)
79_recipient = reader.GetAttribute(RecipientAttribute, null);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSKeyInfoSerializer.cs (2)
126string valueType = reader.GetAttribute(_parent.SecurityTokenSerializer.DictionaryManager.SecurityJan2004Dictionary.ValueType, null); 131string uri = reader.GetAttribute(_parent.SecurityTokenSerializer.DictionaryManager.SecurityJan2004Dictionary.URI, null);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecureConversation.cs (2)
137id = reader.GetAttribute(XD.UtilityDictionary.IdAttribute, XD.UtilityDictionary.Namespace); 139derivationAlgorithm = reader.GetAttribute(XD.XmlSignatureDictionary.Algorithm, null);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityJan2004.cs (4)
359string type = reader.GetAttribute(XD.SecurityJan2004Dictionary.TypeAttribute, null); 375id = reader.GetAttribute(XD.UtilityDictionary.IdAttribute, XD.UtilityDictionary.Namespace); 529return reader.GetAttribute(XD.XmlEncryptionDictionary.Id, null); 533return reader.GetAttribute(XD.UtilityDictionary.IdAttribute, XD.UtilityDictionary.Namespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityTokenSerializer.cs (2)
244throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(string.Format(SRServiceModel.CannotReadToken, reader.LocalName, reader.NamespaceURI, localReader.GetAttribute(XD.SecurityJan2004Dictionary.ValueType, null)))); 509reader.GetAttribute(XD.SecurityJan2004Dictionary.ValueType, null) == this.ValueTypeUri;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrust.cs (3)
107reader.GetAttribute(XD.SecurityJan2004Dictionary.ValueType, null) == this.ValueTypeUri; 130string secretType = reader.GetAttribute(XD.SecurityJan2004Dictionary.TypeAttribute, null); 131string id = reader.GetAttribute(XD.UtilityDictionary.IdAttribute, XD.UtilityDictionary.Namespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\XmlHelper.cs (2)
225string value = reader.GetAttribute(attributeName, null); 241string value = reader.GetAttribute(name, ns);