*Result and *ResultSpecified parameters in WCF service?

前端 未结 6 386
[愿得一人]
[愿得一人] 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:29

    Worked fine for me as below code:

    [ServiceContract]
    [XmlSerializerFormat]
    public interface IService1
    {
       // do code here
    }
    

提交回复
热议问题