ParameterModelBase 构造函数

定义

重载

ParameterModelBase(ParameterModelBase)

复制构造函数。

ParameterModelBase(Type, IReadOnlyList<Object>)

初始化 ParameterModelBase 的新实例。

ParameterModelBase(ParameterModelBase)

Source:
ParameterModelBase.cs
Source:
ParameterModelBase.cs
Source:
ParameterModelBase.cs

复制构造函数。

protected:
 ParameterModelBase(Microsoft::AspNetCore::Mvc::ApplicationModels::ParameterModelBase ^ other);
protected ParameterModelBase (Microsoft.AspNetCore.Mvc.ApplicationModels.ParameterModelBase other);
new Microsoft.AspNetCore.Mvc.ApplicationModels.ParameterModelBase : Microsoft.AspNetCore.Mvc.ApplicationModels.ParameterModelBase -> Microsoft.AspNetCore.Mvc.ApplicationModels.ParameterModelBase
Protected Sub New (other As ParameterModelBase)

参数

other
ParameterModelBase

要复制的另一个实例

适用于

ParameterModelBase(Type, IReadOnlyList<Object>)

Source:
ParameterModelBase.cs
Source:
ParameterModelBase.cs
Source:
ParameterModelBase.cs

初始化 ParameterModelBase 的新实例。

protected:
 ParameterModelBase(Type ^ parameterType, System::Collections::Generic::IReadOnlyList<System::Object ^> ^ attributes);
protected ParameterModelBase (Type parameterType, System.Collections.Generic.IReadOnlyList<object> attributes);
new Microsoft.AspNetCore.Mvc.ApplicationModels.ParameterModelBase : Type * System.Collections.Generic.IReadOnlyList<obj> -> Microsoft.AspNetCore.Mvc.ApplicationModels.ParameterModelBase
Protected Sub New (parameterType As Type, attributes As IReadOnlyList(Of Object))

参数

parameterType
Type

类型。

attributes
IReadOnlyList<Object>

属性。

适用于