共用方式為


ControllerModel 建構函式

定義

多載

ControllerModel(ControllerModel)

初始化 ControllerModel 的新執行個體。

ControllerModel(TypeInfo, IReadOnlyList<Object>)

初始化 ControllerModel 的新執行個體。

ControllerModel(ControllerModel)

來源:
ControllerModel.cs
來源:
ControllerModel.cs
來源:
ControllerModel.cs

初始化 ControllerModel 的新執行個體。

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

參數

other
ControllerModel

其他控制器模型。

適用於

ControllerModel(TypeInfo, IReadOnlyList<Object>)

來源:
ControllerModel.cs
來源:
ControllerModel.cs
來源:
ControllerModel.cs

初始化 ControllerModel 的新執行個體。

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

參數

controllerType
TypeInfo

控制器的型別。

attributes
IReadOnlyList<Object>

屬性。

適用於