Interface IRouteMatcher
Assembly: Steeltoe.Common.Abstractions.dll
Syntax
public interface IRouteMatcher
Methods
|
Edit this page
View Source
Combine(String, String)
Declaration
string Combine(string pattern1, string pattern2)
Parameters
Type |
Name |
Description |
System.String |
pattern1 |
|
System.String |
pattern2 |
|
Returns
Type |
Description |
System.String |
|
|
Edit this page
View Source
GetPatternComparer(IRoute)
Declaration
IComparer<string> GetPatternComparer(IRoute route)
Parameters
Type |
Name |
Description |
IRoute |
route |
|
Returns
Type |
Description |
IComparer<System.String> |
|
|
Edit this page
View Source
IsPattern(String)
Declaration
bool IsPattern(string route)
Parameters
Type |
Name |
Description |
System.String |
route |
|
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
Match(String, IRoute)
Declaration
bool Match(string pattern, IRoute route)
Parameters
Type |
Name |
Description |
System.String |
pattern |
|
IRoute |
route |
|
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
MatchAndExtract(String, IRoute)
Declaration
IDictionary<string, string> MatchAndExtract(string pattern, IRoute route)
Parameters
Type |
Name |
Description |
System.String |
pattern |
|
IRoute |
route |
|
Returns
Type |
Description |
IDictionary<System.String, System.String> |
|
|
Edit this page
View Source
ParseRoute(String)
Declaration
IRoute ParseRoute(string routeValue)
Parameters
Type |
Name |
Description |
System.String |
routeValue |
|
Returns