8 references to XmlEncryptionDictionary
System.ServiceModel (8)
System\ServiceModel\Security\EncryptedData.cs (1)
13internal static readonly XmlDictionaryString ElementName = XD.XmlEncryptionDictionary.EncryptedData;
System\ServiceModel\Security\WSSecurityJan2004.cs (3)
492protected override XmlDictionaryString NamespaceUri { get { return XD.XmlEncryptionDictionary.Namespace; } } 672if (reader.IsStartElement(EncryptedData.ElementName, XD.XmlEncryptionDictionary.Namespace)) 674return reader.GetAttribute(XD.XmlEncryptionDictionary.Id, null);
System\ServiceModel\Security\WSSecurityOneDotZeroReceiveSecurityHeader.cs (4)
229if (localreader.IsStartElement(EncryptedData.ElementName, XD.XmlEncryptionDictionary.Namespace)) 231string encryptedDataId = localreader.GetAttribute(XD.XmlEncryptionDictionary.Id, null); 387bool encrypted = reader.IsStartElement(EncryptedData.ElementName, XD.XmlEncryptionDictionary.Namespace); 397return reader.IsStartElement(EncryptedKey.ElementName, XD.XmlEncryptionDictionary.Namespace);