Как я могу привязать свои выходы к функции async? Обычный метод установки параметра для out
не работает с функциями асинхронными.
пример
using System;
public static async void Run(string input, TraceWriter log, out string blobOutput)
{
log.Info($"C# manually triggered function called with input: {input}");
await Task.Delay(1);
blobOutput = input;
}
Это приводит к компиляции Ошибка:
[timestamp] (3,72): error CS1988: Async methods cannot have ref or out parameters
Используемое связывание (fyi)
{
"bindings": [
{
"type": "blob",
"name": "blobOutput",
"path": "testoutput/{rand-guid}.txt",
"connection": "AzureWebJobsDashboard",
"direction": "out"
},
{
"type": "manualTrigger",
"name": "input",
"direction": "in"
}
],
"disabled": false
}