Ejemplo n.º 1
0
        public BasicAuthResult(IBasicAuth basicAuth)
        {
            if (basicAuth == null)
            {
                throw new ArgumentNullException(nameof(basicAuth));
            }

            this.basicAuth = basicAuth;
        }
Ejemplo n.º 2
0
        public DownloadController(IBasicAuth basicAuth)
        {
            if (basicAuth == null)
            {
                throw new ArgumentNullException(nameof(basicAuth));
            }

            this.basicAuth = basicAuth;
        }