in src/Microsoft.Azure.WebJobs.Extensions.Dapr/Bindings/Converters/DaprSecretsGenericsConverter.cs [29:38]
public async override Task<string> GetStringContentAsync(DaprSecretAttribute input, CancellationToken cancellationToken)
{
var secret = await this.daprClient.GetSecretAsync(
input.DaprAddress,
input.SecretStoreName,
input.Key,
input.Metadata,
cancellationToken);
return JsonSerializer.Serialize(secret, JsonUtils.DefaultSerializerOptions);
}