internal void Add(string key, UriTemplate template) { _Templates.Add(key, template); }
internal static UriTemplate AddParameterFromKeyValuePair(this UriTemplate template, string name, object value) { template.SetParameter(name, value); return(template); }