28 lines
968 B
C#
28 lines
968 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 Microsoft.AspNetCore.Http;
|
|
using Microsoft.Extensions.Primitives;
|
|
|
|
namespace Microsoft.AspNetCore.Routing
|
|
{
|
|
/// <summary>
|
|
/// Provides a collection of <see cref="Endpoint"/> instances.
|
|
/// </summary>
|
|
public abstract class EndpointDataSource
|
|
{
|
|
/// <summary>
|
|
/// Gets a <see cref="IChangeToken"/> used to signal invalidation of cached <see cref="Endpoint"/>
|
|
/// instances.
|
|
/// </summary>
|
|
/// <returns>The <see cref="IChangeToken"/>.</returns>
|
|
public abstract IChangeToken GetChangeToken();
|
|
|
|
/// <summary>
|
|
/// Returns a read-only collection of <see cref="Endpoint"/> instances.
|
|
/// </summary>
|
|
public abstract IReadOnlyList<Endpoint> Endpoints { get; }
|
|
}
|
|
}
|