1 instantiation of RegisterRequest
Microsoft.AspNetCore.Identity (1)
_generated\9\IdentityEndpointsJsonSerializerContext.RegisterRequest.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
(){ Email = (string)args[0], Password = (string)args[1] },
37 references to RegisterRequest
Microsoft.AspNetCore.Identity (37)
_generated\0\GeneratedRouteBuilderExtensions.g.cs (11)
73
options.EndpointBuilder.Metadata.Add(new AcceptsMetadata(type: typeof(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
), isOptional: false, contentTypes: GeneratedMetadataConstants.JsonContentType));
87
var handler = Cast(del, global::System.Threading.Tasks.Task<global::Microsoft.AspNetCore.Http.HttpResults.Results<global::Microsoft.AspNetCore.Http.HttpResults.Ok, global::Microsoft.AspNetCore.Http.HttpResults.ValidationProblem>> (global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
arg0, global::Microsoft.AspNetCore.Http.HttpContext arg1, global::System.IServiceProvider arg2) => throw null!);
95
var registration_JsonTypeInfo = (JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
>)jsonSerializerOptions.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
));
105
var task = handler(ic.GetArgument<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
>(0)!, ic.GetArgument<global::Microsoft.AspNetCore.Http.HttpContext>(1)!, ic.GetArgument<global::System.IServiceProvider>(2)!);
117
var registration_resolveBodyResult = await GeneratedRouteBuilderExtensionsCore.TryResolveBodyAsync<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
>(httpContext, logOrThrowExceptionHelper, false, "RegisterRequest", "registration", registration_JsonTypeInfo);
118
var
registration_local = registration_resolveBodyResult.Item2;
145
var registration_resolveBodyResult = await GeneratedRouteBuilderExtensionsCore.TryResolveBodyAsync<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
>(httpContext, logOrThrowExceptionHelper, false, "RegisterRequest", "registration", registration_JsonTypeInfo);
146
var
registration_local = registration_resolveBodyResult.Item2;
159
var result = await filteredInvocation(EndpointFilterInvocationContext.Create<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
, global::Microsoft.AspNetCore.Http.HttpContext, global::System.IServiceProvider>(httpContext, registration_local!, context_local, sp_local));
170
var castHandler = Cast(handler, global::System.Threading.Tasks.Task<global::Microsoft.AspNetCore.Http.HttpResults.Results<global::Microsoft.AspNetCore.Http.HttpResults.Ok, global::Microsoft.AspNetCore.Http.HttpResults.ValidationProblem>> (global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
arg0, global::Microsoft.AspNetCore.Http.HttpContext arg1, global::System.IServiceProvider arg2) => throw null!);
_generated\18\IdentityEndpointsJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
50
if (type == typeof(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
))
_generated\9\IdentityEndpointsJsonSerializerContext.RegisterRequest.g.cs (23)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
>? _RegisterRequest;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
> RegisterRequest
22
get => _RegisterRequest ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
> Create_RegisterRequest(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null),
41
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
>(options, objectInfo);
58
DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
),
60
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
)obj).Email,
61
Setter = static (obj, value) => __set_RegisterRequest_Email((global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
)obj, value!),
68
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
).GetProperty("Email", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
81
DeclaringType = typeof(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
),
83
Getter = static obj => ((global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
)obj).Password,
84
Setter = static (obj, value) => __set_RegisterRequest_Password((global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
)obj, value!),
91
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
).GetProperty("Password", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
104
private void RegisterRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
? value)
114
writer.WriteString(PropName_Email, ((global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
)value).Email);
115
writer.WriteString(PropName_Password, ((global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
)value).Password);
142
private static extern void __set_RegisterRequest_Email(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
obj, string value);
144
private static extern void __set_RegisterRequest_Password(global::Microsoft.AspNetCore.Identity.Data.
RegisterRequest
obj, string value);
Data\IdentityEndpointsJsonSerializerContext.cs (1)
8
[JsonSerializable(typeof(
RegisterRequest
))]
IdentityApiEndpointRouteBuilderExtensions.cs (1)
58
([FromBody]
RegisterRequest
registration, HttpContext context, [FromServices] IServiceProvider sp) =>