20 references to Attribute
System.Web.Services (20)
System\Web\Services\Description\ServiceDescription.cs (2)
474if (Soap.BasicProfile1_1 == element.GetAttribute(Soap.Attribute.ConformsTo)) { 499claim.SetAttribute(Soap.Attribute.ConformsTo, Soap.BasicProfile1_1);
System\Web\Services\Protocols\Soap11ServerProtocol.cs (1)
115writer.WriteAttributeString("xml", Soap.Attribute.Lang, Soap.XmlNamespace, soapException.Lang);
System\Web\Services\Protocols\SoapClientProtocol.cs (2)
571writer.WriteAttributeString("soap", Soap.Attribute.EncodingStyle, null, encodingNs); 733lang = reader.GetAttribute(Soap.Attribute.Lang, Soap.XmlNamespace);
System\Web\Services\Protocols\SoapServerProtocol.cs (1)
705writer.WriteAttributeString("soap", Soap.Attribute.EncodingStyle, null, helper.EncodingNs);
System\Web\Services\Protocols\SoapUnknownHeader.cs (14)
36element.SetAttribute(Soap.Attribute.MustUnderstand, Soap12.Namespace, "1"); 38element.RemoveAttribute(Soap.Attribute.MustUnderstand, Soap.Namespace); 43element.RemoveAttribute(Soap.Attribute.Actor, Soap.Namespace); 49element.SetAttribute(Soap.Attribute.MustUnderstand, Soap.Namespace, "1"); 51element.RemoveAttribute(Soap.Attribute.MustUnderstand, Soap12.Namespace); 54element.SetAttribute(Soap.Attribute.Actor, Soap.Namespace, actor); 76string elementMustUnderstand = GetElementAttribute(Soap.Attribute.MustUnderstand, Soap.Namespace, element); 78elementMustUnderstand = GetElementAttribute(Soap.Attribute.MustUnderstand, Soap12.Namespace, element); 98element.SetAttribute(Soap.Attribute.MustUnderstand, Soap.Namespace, "1"); 100element.RemoveAttribute(Soap.Attribute.MustUnderstand, Soap.Namespace); 102element.RemoveAttribute(Soap.Attribute.MustUnderstand, Soap12.Namespace); 111string elementActor = GetElementAttribute(Soap.Attribute.Actor, Soap.Namespace, element); 123element.RemoveAttribute(Soap.Attribute.Actor, Soap.Namespace); 125element.SetAttribute(Soap.Attribute.Actor, Soap.Namespace, value);