| File: IServiceEndpointBuilder.cs | Web Access |
| Project: src\src\Libraries\Microsoft.Extensions.ServiceDiscovery.Abstractions\Microsoft.Extensions.ServiceDiscovery.Abstractions.csproj (Microsoft.Extensions.ServiceDiscovery.Abstractions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.AspNetCore.Http.Features; using Microsoft.Extensions.Primitives; namespace Microsoft.Extensions.ServiceDiscovery; /// <summary> /// Builder to create a <see cref="ServiceEndpointSource"/> instances. /// </summary> public interface IServiceEndpointBuilder { /// <summary> /// Gets the endpoints. /// </summary> IList<ServiceEndpoint> Endpoints { get; } /// <summary> /// Gets the feature collection. /// </summary> IFeatureCollection Features { get; } /// <summary> /// Adds a change token to the resulting <see cref="ServiceEndpointSource"/>. /// </summary> /// <param name="changeToken">The change token.</param> void AddChangeToken(IChangeToken changeToken); }