1 instantiation of BundleSearchResult
aspire (1)
BundleSearchJsonContext.BundleSearchResult.g.cs (1)
31
ObjectCreator = () => new global::Aspire.Cli.NuGet.
BundleSearchResult
(),
24 references to BundleSearchResult
aspire (24)
BundleSearchJsonContext.BundleSearchResult.g.cs (21)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.NuGet.
BundleSearchResult
>? _BundleSearchResult;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.NuGet.
BundleSearchResult
> BundleSearchResult
22
get => _BundleSearchResult ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.NuGet.
BundleSearchResult
>)Options.GetTypeInfo(typeof(global::Aspire.Cli.NuGet.
BundleSearchResult
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.NuGet.
BundleSearchResult
> Create_BundleSearchResult(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Aspire.Cli.NuGet.
BundleSearchResult
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.NuGet.
BundleSearchResult
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Aspire.Cli.NuGet.
BundleSearchResult
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::Aspire.Cli.NuGet.
BundleSearchResult
).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null),
39
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Aspire.Cli.NuGet.
BundleSearchResult
>(options, objectInfo);
56
DeclaringType = typeof(global::Aspire.Cli.NuGet.
BundleSearchResult
),
58
Getter = static obj => ((global::Aspire.Cli.NuGet.
BundleSearchResult
)obj).Packages,
59
Setter = static (obj, value) => ((global::Aspire.Cli.NuGet.
BundleSearchResult
)obj).Packages = value!,
66
AttributeProviderFactory = static () => typeof(global::Aspire.Cli.NuGet.
BundleSearchResult
).GetProperty("Packages", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.List<global::Aspire.Cli.NuGet.BundlePackageInfo>), global::System.Array.Empty<global::System.Type>(), null),
76
DeclaringType = typeof(global::Aspire.Cli.NuGet.
BundleSearchResult
),
78
Getter = static obj => ((global::Aspire.Cli.NuGet.
BundleSearchResult
)obj).TotalHits,
79
Setter = static (obj, value) => ((global::Aspire.Cli.NuGet.
BundleSearchResult
)obj).TotalHits = value!,
86
AttributeProviderFactory = static () => typeof(global::Aspire.Cli.NuGet.
BundleSearchResult
).GetProperty("TotalHits", InstanceMemberBindingFlags, null, typeof(int), global::System.Array.Empty<global::System.Type>(), null),
96
private void BundleSearchResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Aspire.Cli.NuGet.
BundleSearchResult
? value)
107
ListBundlePackageInfoSerializeHandler(writer, ((global::Aspire.Cli.NuGet.
BundleSearchResult
)value).Packages);
108
writer.WriteNumber(PropName_totalHits, ((global::Aspire.Cli.NuGet.
BundleSearchResult
)value).TotalHits);
BundleSearchJsonContext.GetJsonTypeInfo.g.cs (1)
30
if (type == typeof(global::Aspire.Cli.NuGet.
BundleSearchResult
))
NuGet\BundleNuGetPackageCache.cs (2)
192
var
result = JsonSerializer.Deserialize(output, BundleSearchJsonContext.Default.BundleSearchResult);
272
[JsonSerializable(typeof(
BundleSearchResult
))]