1 type derived from JsonTodo
Microsoft.AspNetCore.Http.Microbenchmarks (1)
src\Http\Http.Extensions\test\RequestDelegateGenerator\SharedTypes.cs (1)
98
public class JsonTodoChild :
JsonTodo
1 instantiation of JsonTodo
Microsoft.AspNetCore.Http.Microbenchmarks (1)
SharedTestJsonContext.JsonTodo.g.cs (1)
31
ObjectCreator = () => new global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
(),
26 references to JsonTodo
Microsoft.AspNetCore.Http.Microbenchmarks (26)
SharedTestJsonContext.GetJsonTypeInfo.g.cs (2)
26
if (type == typeof(global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
))
38
if (type == typeof(global::System.Collections.Generic.IAsyncEnumerable<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>))
SharedTestJsonContext.IAsyncEnumerableJsonTodo.g.cs (10)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::System.Collections.Generic.IAsyncEnumerable<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>>? _IAsyncEnumerableJsonTodo;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::System.Collections.Generic.IAsyncEnumerable<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>> IAsyncEnumerableJsonTodo
22
get => _IAsyncEnumerableJsonTodo ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::System.Collections.Generic.IAsyncEnumerable<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>>)Options.GetTypeInfo(typeof(global::System.Collections.Generic.IAsyncEnumerable<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::System.Collections.Generic.IAsyncEnumerable<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>> Create_IAsyncEnumerableJsonTodo(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::System.Collections.Generic.IAsyncEnumerable<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::System.Collections.Generic.IAsyncEnumerable<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>> jsonTypeInfo))
29
var info = new global::System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<global::System.Collections.Generic.IAsyncEnumerable<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>>
35
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateIAsyncEnumerableInfo<global::System.Collections.Generic.IAsyncEnumerable<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>, global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>(options, info);
SharedTestJsonContext.JsonTodo.g.cs (10)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>? _JsonTodo;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
> JsonTodo
22
get => _JsonTodo ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
> Create_JsonTodo(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null),
39
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.Http.Generators.Tests.
JsonTodo
>(options, objectInfo);
src\Http\Http.Extensions\test\RequestDelegateGenerator\SharedTypes.cs (4)
89
public static async ValueTask<
JsonTodo
?> BindAsync(HttpContext context, ParameterInfo parameter)
92
var
body = await JsonSerializer.DeserializeAsync<
JsonTodo
>(context.Request.Body);
104
[JsonSerializable(typeof(IAsyncEnumerable<
JsonTodo
>))]