public Auth0ClientFactory( string domain, IAuth0AccessTokenFactory auth0AccessTokenFactory) { this.domain = domain; this.accessTokenFactory = auth0AccessTokenFactory; }
public Auth0ClientFactory( Auth0FactoryOptions options, IAuth0AccessTokenFactory auth0AccessTokenFactory) : this(options.Domain, auth0AccessTokenFactory) { }