JsonResult Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Aşırı Yüklemeler
JsonResult(Object) |
Verilen |
JsonResult(Object, JsonSerializerSettings) |
Verilen |
JsonResult(Object, Object) |
Verilen |
JsonResult(Object)
- Kaynak:
- JsonResult.cs
- Kaynak:
- JsonResult.cs
- Kaynak:
- JsonResult.cs
Verilen value
ile yeni JsonResult bir oluşturur.
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)
Parametreler
- value
- Object
JSON olarak biçimlendirecek değer.
Şunlara uygulanır
JsonResult(Object, JsonSerializerSettings)
- Kaynak:
- JsonResult.cs
- Kaynak:
- JsonResult.cs
Verilen value
ile yeni JsonResult bir oluşturur.
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)
Parametreler
- value
- Object
JSON olarak biçimlendirecek değer.
- serializerSettings
- Newtonsoft.Json.JsonSerializerSettings
Newtonsoft.Json.JsonSerializerSettings biçimlendirici tarafından kullanılacak.
Şunlara uygulanır
JsonResult(Object, Object)
- Kaynak:
- JsonResult.cs
Verilen value
ile yeni JsonResult bir oluşturur.
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)
Parametreler
- value
- Object
JSON olarak biçimlendirecek değer.
- serializerSettings
- Object
Biçimlendirici tarafından kullanılacak seri hale getirici ayarları.
kullanırken System.Text.Json
, bu bir örneği JsonSerializerOptionsolmalıdır.
kullanırken Newtonsoft.Json
, bu bir örneği JsonSerializerSettings
olmalıdır.