EventHubListenerLib.EventHubListenerOptions.EventHubListenerOptions C# (CSharp) Method

EventHubListenerOptions() public method

public EventHubListenerOptions ( string currentPartitionId, Uri serviceName, FabricClient fabricClient = null ) : EventHubListenerLib.Common
currentPartitionId string
serviceName System.Uri
fabricClient FabricClient
return EventHubListenerLib.Common
        public EventHubListenerOptions(string currentPartitionId, Uri serviceName, FabricClient fabricClient = null) : this(currentPartitionId) 
        {
            mServiceName  = serviceName;
            mFabricClient = null == fabricClient ? new FabricClient() : fabricClient;
        }

Same methods

EventHubListenerOptions::EventHubListenerOptions ( string currentPartitionId ) : EventHubListenerLib.Common