AllReady.Services.QueueStorageService.QueueStorageService C# (CSharp) Method

QueueStorageService() public method

public QueueStorageService ( IOptions options ) : System.Threading.Tasks
options IOptions
return System.Threading.Tasks
        public QueueStorageService(IOptions<AzureStorageSettings> options)
        {
            var storageAccount = CloudStorageAccount.Parse(options.Value.AzureStorage);
            _client = storageAccount.CreateCloudQueueClient();
        }