EnumGroupAndName Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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.
A Func<TResult> which will return the name.
Applies to
EnumGroupAndName(String, String)
- Source:
- EnumGroupAndName.cs
- 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.