2 instantiations of ExceptionExtensionData
Microsoft.AspNetCore.Diagnostics (2)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (1)
262
problemDetails.Extensions["exception"] = JsonSerializer.SerializeToElement(new
ExceptionExtensionData
ExtensionsExceptionJsonContext.ExceptionExtensionData.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
((string)args[0], (global::Microsoft.AspNetCore.Http.IHeaderDictionary)args[1], (string)args[2], (string)args[3], (global::Microsoft.AspNetCore.Routing.RouteValueDictionary)args[4]),
33 references to ExceptionExtensionData
Microsoft.AspNetCore.Diagnostics (33)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (1)
410
[JsonSerializable(typeof(
ExceptionExtensionData
))]
ExtensionsExceptionJsonContext.ExceptionExtensionData.g.cs (31)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
>? _ExceptionExtensionData;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
> ExceptionExtensionData
22
get => _ExceptionExtensionData ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
> Create_ExceptionExtensionData(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(string), typeof(global::Microsoft.AspNetCore.Http.IHeaderDictionary), typeof(string), typeof(string), typeof(global::Microsoft.AspNetCore.Routing.RouteValueDictionary)}, modifiers: null),
39
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
>(options, objectInfo);
56
DeclaringType = typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
),
58
Getter = static obj => ((global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
)obj).Details,
66
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
).GetProperty("Details", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
77
DeclaringType = typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
),
79
Getter = static obj => ((global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
)obj).Headers,
87
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
).GetProperty("Headers", InstanceMemberBindingFlags, null, typeof(global::Microsoft.AspNetCore.Http.IHeaderDictionary), global::System.Array.Empty<global::System.Type>(), null),
98
DeclaringType = typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
),
100
Getter = static obj => ((global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
)obj).Path,
108
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
).GetProperty("Path", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
119
DeclaringType = typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
),
121
Getter = static obj => ((global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
)obj).Endpoint,
129
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
).GetProperty("Endpoint", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
139
DeclaringType = typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
),
141
Getter = static obj => ((global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
)obj).RouteValues,
149
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
).GetProperty("RouteValues", InstanceMemberBindingFlags, null, typeof(global::Microsoft.AspNetCore.Routing.RouteValueDictionary), global::System.Array.Empty<global::System.Type>(), null),
159
private void ExceptionExtensionDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
? value)
169
writer.WriteString(PropName_Details, ((global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
)value).Details);
171
IHeaderDictionarySerializeHandler(writer, ((global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
)value).Headers);
172
writer.WriteString(PropName_Path, ((global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
)value).Path);
173
writer.WriteString(PropName_Endpoint, ((global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
)value).Endpoint);
175
global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
)value).RouteValues, RouteValueDictionary);
ExtensionsExceptionJsonContext.GetJsonTypeInfo.g.cs (1)
22
if (type == typeof(global::Microsoft.AspNetCore.Diagnostics.
ExceptionExtensionData
))