File: ConfigurationServiceEndpointProviderOptions.cs
Web Access
Project: src\src\Microsoft.Extensions.ServiceDiscovery\Microsoft.Extensions.ServiceDiscovery.csproj (Microsoft.Extensions.ServiceDiscovery)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.Extensions.ServiceDiscovery.Configuration;
 
namespace Microsoft.Extensions.ServiceDiscovery;
 
/// <summary>
/// Options for <see cref="ConfigurationServiceEndpointProvider"/>.
/// </summary>
public sealed class ConfigurationServiceEndpointProviderOptions
{
    /// <summary>
    /// The name of the configuration section which contains service endpoints. Defaults to <c>"Services"</c>.
    /// </summary>
    public string SectionName { get; set; } = "Services";
 
    /// <summary>
    /// Gets or sets a delegate used to determine whether to apply host name metadata to each resolved endpoint. Defaults to a delegate which returns <c>false</c>.
    /// </summary>
    public Func<ServiceEndpoint, bool> ShouldApplyHostNameMetadata { get; set; } = _ => false;
}