79794748

Date: 2025-10-20 09:23:49
Score: 1
Natty:
Report link

Seems that you have to add the Attribute [HttpResult] to the IActionResult property.

As in the Microsoft docuentation you mentioned dotnet-isolated-process-guide - Multiple output bindings.

public class OutputBindingType
{
    [HttpResult]
    public IActionResult HttpResponse { get; set; }
        
    [EventGridOutput(TopicEndpointUri = "SoftwareApplicationsTopicUri", TopicKeySetting = "SoftwareApplicationsTopicKey")]
    public EventGridEvent EventGridResponse { get; set; }
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bob Lokerse