2

I am using WCF services for the Mobile and Web platform and I want to apply the versions to them included Database version as well.

    [OperationContract]
    [FaultContract(typeof(CommonFaultContract))]
    [WebInvoke(Method = "GET", UriTemplate = "/login/{uname},{password},{uuid},{deviceName},{deviceOS}", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
    UserDataContract login(string uname, string password, string uuid, string deviceName, string deviceOS);

using the above code to call the operation contact

Gaurav Kaushik
  • 187
  • 1
  • 1
  • 12

1 Answers1

2

These links may help you-
msdn data contract versioning
wcf handle versioning

Community
  • 1
  • 1
Rajat_RJT
  • 64
  • 7