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