mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-04 23:22:50 +08:00
12 lines
401 B
C#
12 lines
401 B
C#
using System.Collections.Generic;
|
|
using Ocelot.DownstreamRouteFinder.UrlMatcher;
|
|
using Ocelot.Responses;
|
|
using Ocelot.Values;
|
|
|
|
namespace Ocelot.DownstreamUrlCreator.UrlTemplateReplacer
|
|
{
|
|
public interface IDownstreamPathPlaceholderReplacer
|
|
{
|
|
Response<DownstreamPath> Replace(PathTemplate downstreamPathTemplate, List<PlaceholderNameAndValue> urlPathPlaceholderNameAndValues);
|
|
}
|
|
} |