Szeraax
Szeraax
CC#
Created by Szeraax on 5/4/2023 in #help
❔ Azure Function dynamic queue output binding for Isolated Process?
I feel like I should be able to register a middleware that then lets me use some "extension" stuff. https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide#middleware But I don't know if adding that middleware should make it so that I can use GetOutputBindings, or if GetOutputBindings is even the thing I should use to dynamically set what queue to write to.
3 replies
CC#
Created by Szeraax on 11/20/2022 in #help
Azure Functions output binding to HTTP request (trigger) and storage queue? [Answered]
6 replies
CC#
Created by Szeraax on 11/20/2022 in #help
Azure Functions output binding to HTTP request (trigger) and storage queue? [Answered]
6 replies
CC#
Created by Szeraax on 11/20/2022 in #help
Azure Functions output binding to HTTP request (trigger) and storage queue? [Answered]
I wish that I could use the azure portal to look at integrations and add this, but it seems that this is one of the scenarios where they don't allow that. :/
6 replies
CC#
Created by Szeraax on 11/20/2022 in #help
Azure Functions output binding to HTTP request (trigger) and storage queue? [Answered]
Here's the existing HTTP trigger and output:
[Function("HTTPFunction")]
public HttpResponseData
Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post")] HttpRequestData req)
{
// _logger.LogInformation("C# HTTP trigger function processed a request.");
var response = req.CreateResponse();
// ...
return response
}
[Function("HTTPFunction")]
public HttpResponseData
Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post")] HttpRequestData req)
{
// _logger.LogInformation("C# HTTP trigger function processed a request.");
var response = req.CreateResponse();
// ...
return response
}
6 replies