24 lines
675 B
C#
24 lines
675 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Microsoft.AspNetCore.Routing.Matching
|
|
{
|
|
internal class TrivialMatcherBuilder : MatcherBuilder
|
|
{
|
|
private readonly List<RouteEndpoint> _endpoints = new List<RouteEndpoint>();
|
|
|
|
public override void AddEndpoint(RouteEndpoint endpoint)
|
|
{
|
|
_endpoints.Add(endpoint);
|
|
}
|
|
|
|
public override Matcher Build()
|
|
{
|
|
return new TrivialMatcher(_endpoints.Last());
|
|
}
|
|
}
|
|
}
|