我的本地主机中有一个安静的服务,我想调用它并从中获取返回值。它返回一个字符串,并接受一个 int(邮政编码)作为其参数。要调用它,您需要执行以下操作:
http://localhost:49842/WCFRest/Service.svc/deliverable?x={zipCode}
zipCode
我要传递的 int在哪里。当我使用默认邮政编码时,它会返回:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">
some return string.
</string>
那么我将如何从文本框中传递一个值,然后将它返回的内容保存为字符串?