// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.AspNetCore.Razor.Language;
public static class TagHelperDescriptorExtensions
{
public static bool IsDefaultKind(this TagHelperDescriptor tagHelper)
{
ArgHelper.ThrowIfNull(tagHelper);
return tagHelper.Kind == TagHelperKind.ITagHelper;
}
public static bool KindUsesDefaultTagHelperRuntime(this TagHelperDescriptor tagHelper)
{
ArgHelper.ThrowIfNull(tagHelper);
return tagHelper.RuntimeKind == RuntimeKind.ITagHelper;
}
}
|