File: Routing\DynamicControllerRouteValueTransformerMetadata.cs
Web Access
Project: src\src\aspnetcore\src\Mvc\Mvc.Core\src\Microsoft.AspNetCore.Mvc.Core.csproj (Microsoft.AspNetCore.Mvc.Core)
// 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.Routing;

namespace Microsoft.AspNetCore.Mvc.Routing;

internal sealed class DynamicControllerRouteValueTransformerMetadata : IDynamicEndpointMetadata
{
    public DynamicControllerRouteValueTransformerMetadata(Type selectorType, object? state)
    {
        ArgumentNullException.ThrowIfNull(selectorType);

        if (!typeof(DynamicRouteValueTransformer).IsAssignableFrom(selectorType))
        {
            throw new ArgumentException(
                $"The provided type must be a subclass of {typeof(DynamicRouteValueTransformer)}",
                nameof(selectorType));
        }

        SelectorType = selectorType;
        State = state;
    }

    public bool IsDynamic => true;

    public Type SelectorType { get; }

    public object? State { get; }
}