4 references to Text
Aspire.Hosting (1)
ResourceBuilderExtensions.cs (1)
3906case HttpCommandResultMode.Text:
Aspire.Hosting.Tests (2)
WithHttpCommandTests.cs (2)
25Assert.Equal(3, (int)HttpCommandResultMode.Text); 862service.WithHttpCommand("/text", "Get Text", commandName: "mycommand", commandOptions: new() { HttpClientName = "commandclient", ResultMode = HttpCommandResultMode.Text });
Stress.AppHost (1)
CommandResources.cs (1)
909serviceBuilder.WithHttpCommand("/http-command-text-result", "HTTP command text result", commandOptions: new() { Method = HttpMethod.Get, IconName = "ContentViewGalleryLightning", ResultMode = HttpCommandResultMode.Text, Description = "Run an HTTP command and flow the plain-text response back to the caller" });