JsonResult Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
JsonResult(Object) |
Tworzy nowy JsonResult element z danym |
JsonResult(Object, JsonSerializerSettings) |
Tworzy nowy JsonResult element z danym |
JsonResult(Object, Object) |
Tworzy nowy JsonResult element z danym |
JsonResult(Object)
- Źródło:
- JsonResult.cs
- Źródło:
- JsonResult.cs
- Źródło:
- JsonResult.cs
Tworzy nowy JsonResult element z danym value
elementem .
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)
Parametry
- value
- Object
Wartość do sformatowania w formacie JSON.
Dotyczy
JsonResult(Object, JsonSerializerSettings)
- Źródło:
- JsonResult.cs
- Źródło:
- JsonResult.cs
Tworzy nowy JsonResult element z danym value
elementem .
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)
Parametry
- value
- Object
Wartość do sformatowania w formacie JSON.
- serializerSettings
- Newtonsoft.Json.JsonSerializerSettings
Element Newtonsoft.Json.JsonSerializerSettings , który ma być używany przez formater.
Dotyczy
JsonResult(Object, Object)
- Źródło:
- JsonResult.cs
Tworzy nowy JsonResult element z danym value
elementem .
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)
Parametry
- value
- Object
Wartość do sformatowania w formacie JSON.
- serializerSettings
- Object
Ustawienia serializatora, które mają być używane przez formatator.
W przypadku korzystania z programu System.Text.Json
powinno to być wystąpienie klasy JsonSerializerOptions.
W przypadku korzystania z programu Newtonsoft.Json
powinno to być wystąpienie klasy JsonSerializerSettings
.