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)
答案 0 :(得分:7)
您应该可以使用XmlElementAttribute来执行此操作,例如:
[WebMethod]
public string GetStatus(
[XmlElementAttribute(ElementName = "Arg1")] string orderId,
[XmlElementAttribute(ElementName = "Arg2")] string typeId)