本文介绍了如何用多个参数编写[WebGet]方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用ADO.net实体数据模型处理WCF数据服务
i需要编写多个参数的WCF [WebGet]方法
请帮助
thnx ...
i am working on WCF Data service with ADO.net Entity data model
i need to write WCF [WebGet] method whith multiple perameter
Please help
thnx...
推荐答案
[OperationContract]
[WebGet(UriTemplate = "RecoverPassword?email={email}&secQues={securityQuestion}&secAns={securityAnswer}")]
string RecoverPassword(string email, string securityQuestion, string securityAnswer);
-KR
-KR
这篇关于如何用多个参数编写[WebGet]方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!