18 references to Element
System.Web.Services (18)
System\Web\Services\Protocols\Soap12ServerProtocol.cs (8)
126
writer.WriteStartElement(Soap12.
Element
.FaultCode, Soap12.Namespace);
130
writer.WriteStartElement(Soap12.
Element
.FaultReason, Soap12.Namespace);
131
writer.WriteStartElement(Soap12.
Element
.FaultReasonText, Soap12.Namespace);
140
writer.WriteElementString(Soap12.
Element
.FaultNode, Soap12.Namespace, actor);
144
writer.WriteElementString(Soap12.
Element
.FaultRole, Soap12.Namespace, role);
149
writer.WriteStartElement(Soap12.
Element
.FaultDetail, Soap12.Namespace);
165
writer.WriteStartElement(Soap12.
Element
.FaultCodeValue, Soap12.Namespace);
171
writer.WriteStartElement(Soap12.
Element
.FaultSubcode, Soap12.Namespace);
System\Web\Services\Protocols\SoapClientProtocol.cs (8)
726
if (reader.LocalName == Soap.Element.FaultCode || reader.LocalName == Soap12.
Element
.FaultCode) {
737
else if (reader.LocalName == Soap12.
Element
.FaultReason) {
744
if (reader.LocalName == Soap12.
Element
.FaultReasonText && reader.NamespaceURI == Soap12.Namespace) {
757
else if (reader.LocalName == Soap.Element.FaultActor || reader.LocalName == Soap12.
Element
.FaultNode) {
760
else if (reader.LocalName == Soap.Element.FaultDetail || reader.LocalName == Soap12.
Element
.FaultDetail) {
763
else if (reader.LocalName == Soap12.
Element
.FaultRole) {
815
if (reader.LocalName == Soap12.
Element
.FaultCodeValue) {
818
else if (reader.LocalName == Soap12.
Element
.FaultSubcode) {
System\Web\Services\Protocols\SoapServerProtocol.cs (2)
834
XmlElement upgradeElement = doc.CreateElement(Soap12.Prefix, Soap12.
Element
.Upgrade, Soap12.Namespace);
846
XmlElement envelopeElement = doc.CreateElement(Soap12.Prefix, Soap12.
Element
.UpgradeEnvelope, Soap12.Namespace);