CreatedAtActionResult(String, String, Object, Object) コンストラクター

定義

指定された値を使用して、 CreatedAtActionResult の新しいインスタンスを初期化します。

public:
 CreatedAtActionResult(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, System::Object ^ value);
public CreatedAtActionResult (string actionName, string controllerName, object routeValues, object value);
public CreatedAtActionResult (string? actionName, string? controllerName, object? routeValues, object? value);
new Microsoft.AspNetCore.Mvc.CreatedAtActionResult : string * string * obj * obj -> Microsoft.AspNetCore.Mvc.CreatedAtActionResult
Public Sub New (actionName As String, controllerName As String, routeValues As Object, value As Object)

パラメーター

actionName
String

URL の生成に使用するアクションの名前。

controllerName
String

URL の生成に使用するコントローラーの名前。

routeValues
Object

URL の生成に使用するルート データ。

value
Object

エンティティ本文で書式設定する値。

適用対象