*Result and *ResultSpecified parameters in WCF service?

前端 未结 6 401
[愿得一人]
[愿得一人] 2021-01-03 11:19

In my WCF Service I have a function, for example:

bool ValidateLogin(string user, string password)

after I hosted it in windows azure and a

6条回答
  •  梦谈多话
    2021-01-03 11:43

    Add or replace the following code above your IService Interface :

    [ServiceContract ( Namespace="http://www.yoursite.com/"),XmlSerializerFormat]
    

    Source

提交回复
热议问题