You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
according to this document on Azure Functions Binding Syntax it should be possible to access the Application Settings of a Functions App by using the %AppSetting% syntax in the definition of a binding. Unfortunately this doesn't seem to work in my code which is implemented as follows:
[FunctionName("OnDeviceCreate")]publicstaticasyncTaskOnDeviceCreate([MqttTrigger(typeof(TTNMqttConfigProvider),"%TTNAppID%/devices/+/events/create")]IMqttMessagemessage,ILoggerlogger){logger.LogInformation($"{DateTime.Now:g} Creation message for topic {message.Topic}");
....
Is there another way to access Application Settings from an MqttTrigger Binding Definition?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hi,
according to this document on Azure Functions Binding Syntax it should be possible to access the Application Settings of a Functions App by using the
%AppSetting%
syntax in the definition of a binding. Unfortunately this doesn't seem to work in my code which is implemented as follows:Is there another way to access Application Settings from an MqttTrigger Binding Definition?
Thanks in advance!
The text was updated successfully, but these errors were encountered: