DoLess.UriTemplates icon indicating copy to clipboard operation
DoLess.UriTemplates copied to clipboard

.Net Standard implementation of the URI Template Spec https://tools.ietf.org/html/rfc6570

Results 1 DoLess.UriTemplates issues
Sort by recently updated
recently updated
newest added

# Steps to reproduce - Example 1: ```csharp var result = UriTemplate.For("https://localhost:5000/api/resource{?key,value}{?id,name}") .WithPartialExpand() .ExpandToString(); ``` - Example 2: ```csharp var result = UriTemplate.For("https://localhost:5000/api/resource?key=mykey&value=myValue{?id,name}") .WithPartialExpand() .ExpandToString(); ``` # Expected behavior -...