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