Difference between UriTemplate parameters and method parameters

235 Views Asked by At

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.

1

There are 1 best solutions below

2
On

If the method parameters are passed through the Uri, the order of transfer, you must set Uritemplate. your situation is would be (UriTemplate = "/ {strMemId} / {strUname}" ) If you do not, the program will not understand where to find the desired parameter