This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Threading.Tasks; | |
| namespace RecNet.Common.Synchronization | |
| { | |
| public class AsyncKeyLock<TKey> : IAsyncKeyLock<TKey> | |
| { | |
| #region Constants |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using IdentityServer4.Stores; | |
| using Microsoft.Azure.KeyVault; | |
| using Microsoft.Azure.Services.AppAuthentication; | |
| using Microsoft.Extensions.Caching.Memory; | |
| using Microsoft.Extensions.DependencyInjection; | |
| using Microsoft.Extensions.Options; | |
| using Microsoft.IdentityModel.Clients.ActiveDirectory; | |
| using Microsoft.IdentityModel.Tokens; | |
| using System; | |
| using System.Collections.Generic; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.AspNetCore.Http; | |
| using Microsoft.Extensions.Options; | |
| using Microsoft.WindowsAzure.Storage; | |
| using SixLabors.ImageSharp.Web.Providers; | |
| using SixLabors.ImageSharp.Web.Resolvers; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Threading.Tasks; | |
| namespace BlobStorageSample |