1 instantiation of TwitterError
Microsoft.AspNetCore.Authentication.Twitter (1)
_generated\1\TwitterJsonContext.TwitterError.g.cs (1)
33
ObjectCreator = () => new global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
(),
40 references to TwitterError
Microsoft.AspNetCore.Authentication.Twitter (40)
_generated\1\TwitterJsonContext.TwitterError.g.cs (21)
15
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>? _TwitterError;
21
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
> TwitterError
24
get => _TwitterError ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
));
27
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
> Create_TwitterError(global::System.Text.Json.JsonSerializerOptions options)
29
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
> jsonTypeInfo))
31
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>
37
ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null),
43
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>(options, objectInfo);
60
DeclaringType = typeof(global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
),
62
Getter = static obj => ((global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
)obj).Code,
63
Setter = static (obj, value) => ((global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
)obj).Code = value!,
70
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
).GetProperty("Code", InstanceMemberBindingFlags, null, typeof(int), global::System.Array.Empty<global::System.Type>(), null),
80
DeclaringType = typeof(global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
),
82
Getter = static obj => ((global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
)obj).Message,
83
Setter = static (obj, value) => ((global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
)obj).Message = value!,
90
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
).GetProperty("Message", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
100
private void TwitterErrorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
? value)
110
writer.WriteNumber(PropName_Code, ((global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
)value).Code);
111
writer.WriteString(PropName_Message, ((global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
)value).Message);
_generated\2\TwitterJsonContext.TwitterErrorResponse.g.cs (3)
55
var info0 = new global::System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues<global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>>
70
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Authentication.Twitter.TwitterErrorResponse).GetProperty("Errors", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>), global::System.Array.Empty<global::System.Type>(), null),
73
properties[0] = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreatePropertyInfo<global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>>(options, info0);
_generated\3\TwitterJsonContext.ListTwitterError.g.cs (12)
15
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>>? _ListTwitterError;
21
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>> ListTwitterError
24
get => _ListTwitterError ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>>)Options.GetTypeInfo(typeof(global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>));
27
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>> Create_ListTwitterError(global::System.Text.Json.JsonSerializerOptions options)
29
if (!TryGetTypeInfoForRuntimeCustomConverter<global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>> jsonTypeInfo))
31
var info = new global::System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>>
33
ObjectCreator = () => new global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>(),
39
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateListInfo<global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>, global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>(options, info);
49
private void ListTwitterErrorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>? value)
_generated\7\TwitterJsonContext.GetJsonTypeInfo.g.cs (2)
24
if (type == typeof(global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
))
32
if (type == typeof(global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.
TwitterError
>))
TwitterErrorResponse.cs (1)
8
public List<
TwitterError
>? Errors { get; set; }
TwitterHandler.cs (1)
391
foreach (
var
error in errorResponse.Errors)