EventHubListenerLib.EventHubListenerOptions.EventHubListenerOptions C# (CSharp) Méthode

EventHubListenerOptions() public méthode

public EventHubListenerOptions ( string currentPartitionId ) : EventHubListenerLib.Common
currentPartitionId string
Résultat 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