Share via


EnumGroupAndName Constructors

Definition

Overloads

EnumGroupAndName(String, Func<String>)

Initializes a new instance of the EnumGroupAndName structure.

EnumGroupAndName(String, String)

Initializes a new instance of the EnumGroupAndName structure. This constructor should not be used in any site where localization is important.

EnumGroupAndName(String, Func<String>)

Source:
EnumGroupAndName.cs
Source:
EnumGroupAndName.cs

Initializes a new instance of the EnumGroupAndName structure.

public:
 EnumGroupAndName(System::String ^ group, Func<System::String ^> ^ name);
public EnumGroupAndName (string group, Func<string> name);
new Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName : string * Func<string> -> Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName
Public Sub New (group As String, name As Func(Of String))

Parameters

group
String

The group name.

name
Func<String>

A Func<TResult> which will return the name.

Applies to

EnumGroupAndName(String, String)

Source:
EnumGroupAndName.cs
Source:
EnumGroupAndName.cs

Initializes a new instance of the EnumGroupAndName structure. This constructor should not be used in any site where localization is important.

public:
 EnumGroupAndName(System::String ^ group, System::String ^ name);
public EnumGroupAndName (string group, string name);
new Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName : string * string -> Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName
Public Sub New (group As String, name As String)

Parameters

group
String

The group name.

name
String

The name.

Applies to