In my WCF service, I have a function like:
bool ValidateLogin(string user, string password)
after I placed it in azure windows and added links to my web application, this function became:
bool ValidateLogin(string user, string password, out int ValidateLoginResult, out bool ValidateLoginResultSpecified)
Does anyone know what these two options are? And how can I prevent it from being added after hosting?
source
share