public SasTokenAuthenticationService(
            ISharedAccessTokenService tokenService,
            IStorageAccountResolverService storage,
            ITenantContainerNameService containers
            )
        {
            this._tokenService = tokenService;
            this._storage      = storage;
            this._containers   = containers;

            RevokeTokens = new List <String>();
        }
コード例 #2
0
 public CompSasTokenHandler(IStorageAccountResolverService storage, ITenantContainerNameService containers, ISharedAccessTokenService tokenservice)
 {
     _storage      = storage;
     _containers   = containers;
     _tokenservice = tokenservice;
 }