I just started using WCF with REST and UriTemplates. Is it now possible to use optional parameters?
If not, what would you guys recommend I do for a system that has
You have to use "?" followed by "/" in your Url.
example:
[WebGet(UriTemplate = "GetSample/?OptionalParamter={value}")] string GetSample(string part1);