C# Класс Sakura.AspNetCore.Mvc.TagHelpers.EnumForSelectTagHelper

Наследование: EnumSelectTagHelper
Показать файл Открыть проект

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
EnumForSelectTagHelper ( IHtmlGenerator generator ) : System

Initialize an new instance with required services.

Process ( Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext context, Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput output ) : void

Synchronously executes the TagHelper with the given context and output.

Защищенные методы

Метод Описание
GetEnumType ( ) : Type

Return the actual enum type for generating the list.

Описание методов

EnumForSelectTagHelper() публичный Метод

Initialize an new instance with required services.
public EnumForSelectTagHelper ( IHtmlGenerator generator ) : System
generator IHtmlGenerator The HTML generator service.
Результат System

GetEnumType() защищенный Метод

Return the actual enum type for generating the list.
protected GetEnumType ( ) : Type
Результат System.Type

Process() публичный Метод

Synchronously executes the TagHelper with the given context and output.
public Process ( Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext context, Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput output ) : void
context Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext Contains information associated with the current HTML tag.
output Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput A stateful HTML element used to generate an HTML tag.
Результат void