1 instantiation of ResourceSnapshotUrlDisplayProperties
aspire (1)
BackchannelJsonSerializerContext.ResourceSnapshotUrlDisplayProperties.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
(){ DisplayName = (string)args[0], SortOrder = (int)args[1] },
26 references to ResourceSnapshotUrlDisplayProperties
aspire (26)
BackchannelJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
198
if (type == typeof(global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
))
BackchannelJsonSerializerContext.ResourceSnapshotUrl.g.cs (5)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Backchannel.ResourceSnapshotUrl(){ Name = (string)args[0], Url = (string)args[1], IsInternal = (bool)args[2], DisplayProperties = (global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
)args[3] },
117
var info3 = new global::System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues<global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
>
132
AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Backchannel.ResourceSnapshotUrl).GetProperty("DisplayProperties", InstanceMemberBindingFlags, null, typeof(global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
), global::System.Array.Empty<global::System.Type>(), null),
135
properties[3] = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreatePropertyInfo<global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
>(options, info3);
193
ParameterType = typeof(global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
),
BackchannelJsonSerializerContext.ResourceSnapshotUrlDisplayProperties.g.cs (19)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
>? _ResourceSnapshotUrlDisplayProperties;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
> ResourceSnapshotUrlDisplayProperties
22
get => _ResourceSnapshotUrlDisplayProperties ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
>)Options.GetTypeInfo(typeof(global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
> Create_ResourceSnapshotUrlDisplayProperties(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
).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.Backchannel.
ResourceSnapshotUrlDisplayProperties
>(options, objectInfo);
56
DeclaringType = typeof(global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
),
58
Getter = static obj => ((global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
)obj).DisplayName,
66
AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
).GetProperty("DisplayName", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
76
DeclaringType = typeof(global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
),
78
Getter = static obj => ((global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
)obj).SortOrder,
86
AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
).GetProperty("SortOrder", InstanceMemberBindingFlags, null, typeof(int), global::System.Array.Empty<global::System.Type>(), null),
96
private void ResourceSnapshotUrlDisplayPropertiesSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
? value)
106
writer.WriteString(PropName_DisplayName, ((global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
)value).DisplayName);
107
writer.WriteNumber(PropName_SortOrder, ((global::Aspire.Cli.Backchannel.
ResourceSnapshotUrlDisplayProperties
)value).SortOrder);
src\Aspire.Hosting\Backchannel\BackchannelDataTypes.cs (1)
725
public
ResourceSnapshotUrlDisplayProperties
? DisplayProperties { get; init; }