Consider the code
[WebInvoke(UriTemplate="/{memId}/{username}")]
[ServiceContract]
void Method(string strMemId,string strUname)
{
// my code goes here
}
Are the parameters present in the UriTemplate,the same to the method parameters? If not, when will they be needed/required?
Thanks. Any inputs appreciated.