Share via


ParameterModelBase Constructors

Definition

Overloads

ParameterModelBase(ParameterModelBase)

Copy constructor.

ParameterModelBase(Type, IReadOnlyList<Object>)

Initializes a new instance of a ParameterModelBase.

ParameterModelBase(ParameterModelBase)

Source:
ParameterModelBase.cs
Source:
ParameterModelBase.cs

Copy constructor.

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)

Parameters

other
ParameterModelBase

The other instance to copy

Applies to

ParameterModelBase(Type, IReadOnlyList<Object>)

Source:
ParameterModelBase.cs
Source:
ParameterModelBase.cs

Initializes a new instance of a 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))

Parameters

parameterType
Type

The type.

attributes
IReadOnlyList<Object>

The attributes.

Applies to