Example #1
0
        public void AssertConfigurationCompleted()
        {
            if (StorageConnectionString.IsNullOrEmpty())
            {
                throw new InvalidOperationException("StorageConnectionString is not specified.");
            }

            if (JournalTableName.IsNullOrEmpty())
            {
                throw new InvalidOperationException("JournalTableName is not specified.");
            }

            if (NotificationQueueName.IsNullOrEmpty())
            {
                throw new InvalidOperationException("NotificationQueueName is not specified.");
            }

            if (StreamConsumerSessionsBlobContainerName.IsNullOrEmpty())
            {
                throw new InvalidOperationException("StreamConsumerSessionsBlobContainerName is not specified.");
            }
        }