コード例 #1
0
 public EventProcessorHostWrapper(IEvenHubCredentialProvider credentialProvider)
 {
     _wrappedProcessorHost = new EventProcessorHost(
         credentialProvider.GetEventHubEntityPath(),
         PartitionReceiver.DefaultConsumerGroupName,
         credentialProvider.GetEventHubConnectionString(),
         credentialProvider.GetStorageConnectionString(),
         credentialProvider.GetStorageContainerName()
         );
 }