C# SOAP头名称空间

C# SOAP头名称空间,c#,xml,web-services,soap,C#,Xml,Web Services,Soap,服务期望 POST /ADNHContact.asmx HTTP/1.1 Host: localhost Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://www.xxx-xxx.co.uk/ADNIntegration/SaveGrantApplication" <?xml version="1.0" encoding="utf-8"?> <soap:Envelo

服务期望

POST /ADNHContact.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.xxx-xxx.co.uk/ADNIntegration/SaveGrantApplication"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <Action xmlns="http://www.xxx-xxx.co.uk/ADNIntegration/" />
  </soap:Header>
  <soap:Body>
    <SaveGrantApplication xmlns="http://www.xxx-xxx.co.uk/ADNIntegration/" />
  </soap:Body>
</soap:Envelope>
但是我想把标题改成这个

    <soap:Header>
             <Action xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">
http://www.xxx-xxx.co.uk/ADNIntegration/SaveGrantApplication</Action>
        </soap:Header>

http://www.xxx-xxx.co.uk/ADNIntegration/SaveGrantApplication

感谢需要更改为xmlns=”“基本上“/>需要更改“>xxx-xxx.co.uk/ADNIntegration/SaveGrantApplication
    <soap:Header>
             <Action xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">
http://www.xxx-xxx.co.uk/ADNIntegration/SaveGrantApplication</Action>
        </soap:Header>