As UriTemplate Class is not available in .NET Standard hence I am not able to use it in Xamarin.Forms.
Problem Statement:-
For a given dynamic URI template:
String template = "http://example.com/name/{name}/age/{age}";
There is a given hashmap collection which contains the name and age path parameter value
Map<String, String> parameters = new HashMap<>();
Expected implementation using UriTemplate:-
UriTemplate uriTemplate = new UriTemplate(template);
uriTemplate.match(uri, parameters);
I am not able to implement this behaviour in Xamarin.Forms as this UriTemplate class is not available in .Net Standard. Is there any alternative to UriTemplate Class required to be used in Xamarin.Forms project.