JsonResult 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
JsonResult(Object) |
JsonResult使用给定 |
JsonResult(Object, JsonSerializerSettings) |
JsonResult使用给定 |
JsonResult(Object, Object) |
JsonResult使用给定 |
JsonResult(Object)
- Source:
- JsonResult.cs
- Source:
- JsonResult.cs
- Source:
- JsonResult.cs
JsonResult使用给定 value
的 创建新的 。
public:
JsonResult(System::Object ^ value);
public JsonResult (object value);
public JsonResult (object? value);
new Microsoft.AspNetCore.Mvc.JsonResult : obj -> Microsoft.AspNetCore.Mvc.JsonResult
Public Sub New (value As Object)
参数
- value
- Object
要格式化为 JSON 的值。
适用于
JsonResult(Object, JsonSerializerSettings)
- Source:
- JsonResult.cs
- Source:
- JsonResult.cs
JsonResult使用给定 value
的 创建新的 。
public:
JsonResult(System::Object ^ value, Newtonsoft::Json::JsonSerializerSettings ^ serializerSettings);
public JsonResult (object value, Newtonsoft.Json.JsonSerializerSettings serializerSettings);
new Microsoft.AspNetCore.Mvc.JsonResult : obj * Newtonsoft.Json.JsonSerializerSettings -> Microsoft.AspNetCore.Mvc.JsonResult
Public Sub New (value As Object, serializerSettings As JsonSerializerSettings)
参数
- value
- Object
要格式化为 JSON 的值。
- serializerSettings
- Newtonsoft.Json.JsonSerializerSettings
Newtonsoft.Json.JsonSerializerSettings格式化程序要使用的 。
适用于
JsonResult(Object, Object)
- Source:
- JsonResult.cs
JsonResult使用给定 value
的 创建新的 。
public:
JsonResult(System::Object ^ value, System::Object ^ serializerSettings);
public JsonResult (object value, object serializerSettings);
public JsonResult (object? value, object? serializerSettings);
new Microsoft.AspNetCore.Mvc.JsonResult : obj * obj -> Microsoft.AspNetCore.Mvc.JsonResult
Public Sub New (value As Object, serializerSettings As Object)
参数
- value
- Object
要格式化为 JSON 的值。
- serializerSettings
- Object
格式化程序要使用的序列化程序设置。
使用 System.Text.Json
时,这应该是 的 JsonSerializerOptions实例。
使用 Newtonsoft.Json
时,这应该是 的 JsonSerializerSettings
实例。