/// <summary> /// Initializes a new instance of the <see cref="BoundFunctionPathSegmentTemplate"/> class. /// </summary> /// <param name="function">The function segment to be templatized</param> public BoundFunctionPathSegmentTemplate(BoundFunctionPathSegment function) { if (function == null) { throw Error.ArgumentNull("function"); } FunctionName = function.FunctionName; ParameterMappings = KeyValuePathSegmentTemplate.BuildParameterMappings(function.Values, function.ToString()); }