Esempio n. 1
0
        /// <summary>
        /// Adds the <see cref="DoubanMiddleware"/> middleware to the specified <see cref="IApplicationBuilder"/>, which enables Douban authentication capabilities.
        /// </summary>
        /// <param name="app">The <see cref="IApplicationBuilder" /> to add the middleware to.</param>
        /// <param name="configureOptions">An action delegate to configure the provided <see cref="DoubanOptions"/>.</param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static IApplicationBuilder UseDoubanAuthentication(this IApplicationBuilder app, Action <DoubanOptions> configureOptions)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

            var options = new DoubanOptions();

            configureOptions?.Invoke(options);
            return(app.UseDoubanAuthentication(options));
        }
Esempio n. 2
0
        /// <summary>
        /// Adds the <see cref="DoubanMiddleware"/> middleware to the specified <see cref="IApplicationBuilder"/>, which enables Douban authentication capabilities.
        /// </summary>
        /// <param name="app">The <see cref="IApplicationBuilder" /> to add the middleware to.</param>
        /// <param name="options">A <see cref="DoubanOptions"/> that specifies options for the middleware.</param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static IApplicationBuilder UseDoubanAuthentication(this IApplicationBuilder app, DoubanOptions options)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

            if (options == null)
            {
                throw new ArgumentNullException(nameof(options));
            }

            return(app.UseMiddleware <DoubanMiddleware>(options));
        }