1 write to element
System.Web.Services (1)
System\Web\Services\Protocols\SoapUnknownHeader.cs (1)
68element = value;
31 references to element
System.Web.Services (31)
System\Web\Services\Protocols\SoapUnknownHeader.cs (31)
31if (element == null) return null; 36element.SetAttribute(Soap.Attribute.MustUnderstand, Soap12.Namespace, "1"); 38element.RemoveAttribute(Soap.Attribute.MustUnderstand, Soap.Namespace); 41element.SetAttribute(Soap12.Attribute.Role, Soap12.Namespace, actor); 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); 56element.RemoveAttribute(Soap12.Attribute.Role, Soap12.Namespace); 57element.RemoveAttribute(Soap12.Attribute.Relay, Soap12.Namespace); 60return element; 63if (value == null && element != null) { 74if (element == null) return base.InternalMustUnderstand; 76string elementMustUnderstand = GetElementAttribute(Soap.Attribute.MustUnderstand, Soap.Namespace, element); 78elementMustUnderstand = GetElementAttribute(Soap.Attribute.MustUnderstand, Soap12.Namespace, element); 96if (element != null) { 98element.SetAttribute(Soap.Attribute.MustUnderstand, Soap.Namespace, "1"); 100element.RemoveAttribute(Soap.Attribute.MustUnderstand, Soap.Namespace); 102element.RemoveAttribute(Soap.Attribute.MustUnderstand, Soap12.Namespace); 109if (element == null) return base.InternalActor; 111string elementActor = GetElementAttribute(Soap.Attribute.Actor, Soap.Namespace, element); 113elementActor = GetElementAttribute(Soap12.Attribute.Role, Soap12.Namespace, element); 121if (element != null) { 123element.RemoveAttribute(Soap.Attribute.Actor, Soap.Namespace); 125element.SetAttribute(Soap.Attribute.Actor, Soap.Namespace, value); 127element.RemoveAttribute(Soap12.Attribute.Role, Soap12.Namespace); 134if (element == null) return base.InternalRelay; 136string elementRelay = GetElementAttribute(Soap12.Attribute.Relay, Soap12.Namespace, element); 153if (element != null) { 155element.SetAttribute(Soap12.Attribute.Relay, Soap12.Namespace, "1"); 157element.RemoveAttribute(Soap12.Attribute.Relay, Soap12.Namespace);