AzureQueueStorage(String, String, JsonSerializerSettings) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the AzureQueueStorage class.
public AzureQueueStorage (string queuesStorageConnectionString, string queueName, Newtonsoft.Json.JsonSerializerSettings jsonSerializerSettings = default);
new Microsoft.Bot.Builder.Azure.Queues.AzureQueueStorage : string * string * Newtonsoft.Json.JsonSerializerSettings -> Microsoft.Bot.Builder.Azure.Queues.AzureQueueStorage
Public Sub New (queuesStorageConnectionString As String, queueName As String, Optional jsonSerializerSettings As JsonSerializerSettings = Nothing)
Parameters
- queuesStorageConnectionString
- String
Azure Storage connection string.
- queueName
- String
Name of the storage queue where entities will be queued.
- jsonSerializerSettings
- Newtonsoft.Json.JsonSerializerSettings
If passing in custom JsonSerializerSettings, we recommend the following settings:
jsonSerializer.TypeNameHandling = TypeNameHandling.None.
jsonSerializer.NullValueHandling = NullValueHandling.Ignore.