EventHubListenerLib.EventHubListenerOptions.EventHubListenerOptions C# (CSharp) Method

EventHubListenerOptions() public method

public EventHubListenerOptions ( string currentPartitionId ) : EventHubListenerLib.Common
currentPartitionId string
return EventHubListenerLib.Common
        public EventHubListenerOptions(string currentPartitionId)
        {
            if (string.IsNullOrEmpty(currentPartitionId))
                throw new ArgumentNullException(nameof(currentPartitionId));

            mCurrentSFPartitionId = currentPartitionId;
        }

Same methods

EventHubListenerOptions::EventHubListenerOptions ( string currentPartitionId, Uri serviceName, FabricClient fabricClient = null ) : EventHubListenerLib.Common