3 writes to Endpoints
aspire (1)
BackchannelJsonSerializerContext.RpcResourceState.g.cs (1)
30ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Backchannel.RpcResourceState(){ Resource = (string)args[0], Type = (string)args[1], State = (string)args[2], Endpoints = (string[])args[3], Health = (string)args[4] },
Aspire.Cli.Tests (2)
TestServices\TestAppHostBackchannel.cs (2)
85Endpoints = new[] { "http://localhost:5000" }, 93Endpoints = new[] { "http://localhost:5001" },
5 references to Endpoints
aspire (5)
BackchannelJsonSerializerContext.RpcResourceState.g.cs (2)
115Getter = static obj => ((global::Aspire.Cli.Backchannel.RpcResourceState)obj).Endpoints, 166StringArraySerializeHandler(writer, ((global::Aspire.Cli.Backchannel.RpcResourceState)value).Endpoints);
Commands\RunCommand.cs (3)
457if (resourceState.Endpoints.Except(existingResourceState.Endpoints) is { } endpoints && endpoints.Any()) 469if (resourceState.Endpoints is { } endpoints && endpoints.Any())