PropertyModel Construtores

Definição

Sobrecargas

PropertyModel(PropertyModel)

Cria uma nova instância de de PropertyModel de um determinado PropertyModel.

PropertyModel(PropertyInfo, IReadOnlyList<Object>)

Cria uma nova instância de PropertyModel.

PropertyModel(PropertyModel)

Origem:
PropertyModel.cs
Origem:
PropertyModel.cs
Origem:
PropertyModel.cs

Cria uma nova instância de de PropertyModel de um determinado PropertyModel.

public:
 PropertyModel(Microsoft::AspNetCore::Mvc::ApplicationModels::PropertyModel ^ other);
public PropertyModel (Microsoft.AspNetCore.Mvc.ApplicationModels.PropertyModel other);
new Microsoft.AspNetCore.Mvc.ApplicationModels.PropertyModel : Microsoft.AspNetCore.Mvc.ApplicationModels.PropertyModel -> Microsoft.AspNetCore.Mvc.ApplicationModels.PropertyModel
Public Sub New (other As PropertyModel)

Parâmetros

other
PropertyModel

O PropertyModel que precisa ser copiado.

Aplica-se a

PropertyModel(PropertyInfo, IReadOnlyList<Object>)

Origem:
PropertyModel.cs
Origem:
PropertyModel.cs
Origem:
PropertyModel.cs

Cria uma nova instância de PropertyModel.

public:
 PropertyModel(System::Reflection::PropertyInfo ^ propertyInfo, System::Collections::Generic::IReadOnlyList<System::Object ^> ^ attributes);
public PropertyModel (System.Reflection.PropertyInfo propertyInfo, System.Collections.Generic.IReadOnlyList<object> attributes);
new Microsoft.AspNetCore.Mvc.ApplicationModels.PropertyModel : System.Reflection.PropertyInfo * System.Collections.Generic.IReadOnlyList<obj> -> Microsoft.AspNetCore.Mvc.ApplicationModels.PropertyModel
Public Sub New (propertyInfo As PropertyInfo, attributes As IReadOnlyList(Of Object))

Parâmetros

propertyInfo
PropertyInfo

O PropertyInfo para a propriedade subjacente.

attributes
IReadOnlyList<Object>

Todos os atributos que são anotados na propriedade .

Aplica-se a