|
// <auto-generated/>
#nullable enable annotations
#nullable disable warnings
// Suppress warnings about [Obsolete] member usage in generated code.
#pragma warning disable CS0612, CS0618
namespace Microsoft.AspNetCore.Http
{
internal sealed partial class ProblemDetailsJsonContext : global::System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver
{
/// <inheritdoc/>
public override global::System.Text.Json.Serialization.Metadata.JsonTypeInfo? GetTypeInfo(global::System.Type type)
{
Options.TryGetTypeInfo(type, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo? typeInfo);
return typeInfo;
}
global::System.Text.Json.Serialization.Metadata.JsonTypeInfo? global::System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver.GetTypeInfo(global::System.Type type, global::System.Text.Json.JsonSerializerOptions options)
{
if (type == typeof(global::Microsoft.AspNetCore.Http.HttpValidationProblemDetails))
{
return Create_HttpValidationProblemDetails(options);
}
if (type == typeof(global::Microsoft.AspNetCore.Mvc.ProblemDetails))
{
return Create_ProblemDetails(options);
}
if (type == typeof(global::System.Collections.Generic.IDictionary<string, object>))
{
return Create_IDictionaryStringObject(options);
}
if (type == typeof(global::System.Collections.Generic.IDictionary<string, string[]>))
{
return Create_IDictionaryStringStringArray(options);
}
if (type == typeof(global::System.Text.Json.JsonElement))
{
return Create_JsonElement(options);
}
if (type == typeof(int))
{
return Create_Int32(options);
}
if (type == typeof(int?))
{
return Create_NullableInt32(options);
}
if (type == typeof(object))
{
return Create_Object(options);
}
if (type == typeof(string))
{
return Create_String(options);
}
if (type == typeof(string[]))
{
return Create_StringArray(options);
}
return null;
}
}
}
|