Sdílet prostřednictvím


ModelAttributes Konstruktory

Definice

Přetížení

ModelAttributes(IEnumerable<Object>)
Zastaralé.

Vytvoří nový ModelAttributes pro Type.

ModelAttributes(IEnumerable<Object>, IEnumerable<Object>)
Zastaralé.

Vytvoří nový ModelAttributes objekt pro vlastnost.

ModelAttributes(IEnumerable<Object>)

Zdroj:
ModelAttributes.cs
Zdroj:
ModelAttributes.cs

Upozornění

This constructor is obsolete and will be removed in a future version. The recommended alternative is ModelAttributes.GetAttributesForType.

Vytvoří nový ModelAttributes pro Type.

public:
 ModelAttributes(System::Collections::Generic::IEnumerable<System::Object ^> ^ typeAttributes);
public ModelAttributes (System.Collections.Generic.IEnumerable<object> typeAttributes);
[System.Obsolete("This constructor is obsolete and will be removed in a future version. The recommended alternative is ModelAttributes.GetAttributesForType.")]
public ModelAttributes (System.Collections.Generic.IEnumerable<object> typeAttributes);
new Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes : seq<obj> -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes
[<System.Obsolete("This constructor is obsolete and will be removed in a future version. The recommended alternative is ModelAttributes.GetAttributesForType.")>]
new Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes : seq<obj> -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes
Public Sub New (typeAttributes As IEnumerable(Of Object))

Parametry

typeAttributes
IEnumerable<Object>

Sada atributů pro Type.

Atributy

Platí pro

ModelAttributes(IEnumerable<Object>, IEnumerable<Object>)

Zdroj:
ModelAttributes.cs
Zdroj:
ModelAttributes.cs

Upozornění

This constructor is obsolete and will be removed in a future version. The recommended alternative is ModelAttributes.GetAttributesForProperty.

Vytvoří nový ModelAttributes objekt pro vlastnost.

public:
 ModelAttributes(System::Collections::Generic::IEnumerable<System::Object ^> ^ propertyAttributes, System::Collections::Generic::IEnumerable<System::Object ^> ^ typeAttributes);
public ModelAttributes (System.Collections.Generic.IEnumerable<object> propertyAttributes, System.Collections.Generic.IEnumerable<object> typeAttributes);
[System.Obsolete("This constructor is obsolete and will be removed in a future version. The recommended alternative is ModelAttributes.GetAttributesForProperty.")]
public ModelAttributes (System.Collections.Generic.IEnumerable<object> propertyAttributes, System.Collections.Generic.IEnumerable<object> typeAttributes);
new Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes : seq<obj> * seq<obj> -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes
[<System.Obsolete("This constructor is obsolete and will be removed in a future version. The recommended alternative is ModelAttributes.GetAttributesForProperty.")>]
new Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes : seq<obj> * seq<obj> -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes
Public Sub New (propertyAttributes As IEnumerable(Of Object), typeAttributes As IEnumerable(Of Object))

Parametry

propertyAttributes
IEnumerable<Object>

Sada atributů pro vlastnost.

typeAttributes
IEnumerable<Object>

Sada atributů pro vlastnost Type. Viz třída PropertyType.

Atributy

Platí pro