Share via


PagePropertyModel 构造函数

定义

重载

PagePropertyModel(PagePropertyModel)

从给定 PagePropertyModel创建 的新PagePropertyModel实例。

PagePropertyModel(PropertyInfo, IReadOnlyList<Object>)

创建 PagePropertyModel 的新实例。

PagePropertyModel(PagePropertyModel)

Source:
PagePropertyModel.cs
Source:
PagePropertyModel.cs

从给定 PagePropertyModel创建 的新PagePropertyModel实例。

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

参数

other
PagePropertyModel

PagePropertyModel需要复制的 。

适用于

PagePropertyModel(PropertyInfo, IReadOnlyList<Object>)

Source:
PagePropertyModel.cs
Source:
PagePropertyModel.cs

创建 PagePropertyModel 的新实例。

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

参数

propertyInfo
PropertyInfo

PropertyInfo基础属性的 。

attributes
IReadOnlyList<Object>

在 属性上批注的任何属性。

适用于