我可以在C#WebMethod中更改参数名称吗?

时间:2014-07-28 14:46:07

标签: .net parameters asmx webmethod

C#WebMethod是否可以接受与其客户端发送不同的参数名称?

例如,给定客户端发送此消息:

<?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:Body>
        <GetStatus xmlns="http://example.com/">
            <Arg1>5</Arg1>
            <Arg2>3</Arg2>
        </GetStatus>
    </soap:Body>
</soap:Envelope>

是否可以重写现有的WebMethod以适应不同的参数名称?像这样的东西?

[WebMethod]
public string GetStatus(
    [MessageParameter(Name = "Arg1")] string orderId, 
    [MessageParameter(Name = "Arg2")] string typeId)

1 个答案:

答案 0 :(得分:7)

您应该可以使用XmlElementAttribute来执行此操作,例如:

[WebMethod]
public string GetStatus(
[XmlElementAttribute(ElementName = "Arg1")] string orderId, 
[XmlElementAttribute(ElementName = "Arg2")] string typeId)