Hapikit.Templates.UriTemplate.UriTemplate C# (CSharp) Method

UriTemplate() public method

public UriTemplate ( string template, bool resolvePartially = false, bool caseInsensitiveParameterNames = false ) : System
template string
resolvePartially bool
caseInsensitiveParameterNames bool
return System
            public UriTemplate(string template, bool resolvePartially = false, bool caseInsensitiveParameterNames = false)
            {
                _resolvePartially = resolvePartially;
                _template = template;
                _Parameters = caseInsensitiveParameterNames
                    ? new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase)
                    : new Dictionary<string, object>();
            }