How to declare optional parameters in UriTemplate in WCF Web Api ? For example :

[WebGet(UriTemplate = "?culture={culture}")]
HttpResponseMessage<IEnumerable<Contact>> GetAll();

I need culture to be optional parameter. If culture is not passed I want to receive null for that param.

PS. I don't want to create solution with multiple GetAll methods with different UriTemplates...

link|improve this question

80% accept rate
feedback

1 Answer

up vote 0 down vote accepted

With the following method declaration culture parameter will be null

[WebGet(UriTemplate = "?culture={culture}")]
HttpResponseMessage<IEnumerable<Contact>> GetAll(string culture);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.