Add event hub connection property

This commit is contained in:
Matt Mason 2017-04-19 08:48:16 -07:00 коммит произвёл mamaso
Родитель 35efd118bf
Коммит c533e4cf67
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -31,5 +31,10 @@ namespace Microsoft.Azure.WebJobs.ServiceBus
/// Optional Name of the consumer group. If missing, then use the default name, "$Default"
/// </summary>
public string ConsumerGroup { get; set; }
/// <summary>
/// Optional connection name. If missing, tries to use a registered event hub receiver.
/// </summary>
public string Connection { get; set; }
}
}