public QueueClientConfiguration(string connectionString, ReceiveMode receiveMode, string queueName) { this.ConnectionString = connectionString; this.ReceiveMode = receiveMode; this.QueueName = queueName; this.RetryStrategy = RetryStrategy.CreateDefault(); }
public TopicClientConfiguration(string connectionString, ReceiveMode receiveMode, string topicName, string subscriptionName) { this.ConnectionString = connectionString; this.ReceiveMode = receiveMode; this.TopicName = topicName; this.SubscriptionName = subscriptionName; this.RetryStrategy = RetryStrategy.CreateDefault(); }