示例#1
0
        /// <summary>
        /// Adds the <see cref="XiaoMiMiddleware"/> middleware to the specified <see cref="IApplicationBuilder"/>, which enables XiaoMi 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="XiaoMiOptions"/>.</param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static IApplicationBuilder UseXiaoMiAuthentication(this IApplicationBuilder app, Action <XiaoMiOptions> configureOptions)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

            var options = new XiaoMiOptions();

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

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

            return app.UseMiddleware<XiaoMiMiddleware>(Options.Create(options));
        }
示例#3
0
        /// <summary>
        /// Adds the <see cref="XiaoMiMiddleware"/> middleware to the specified <see cref="IApplicationBuilder"/>, which enables XiaoMi authentication capabilities.
        /// </summary>
        /// <param name="app">The <see cref="IApplicationBuilder" /> to add the middleware to.</param>
        /// <param name="options">A <see cref="XiaoMiOptions"/> that specifies options for the middleware.</param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static IApplicationBuilder UseXiaoMiAuthentication(this IApplicationBuilder app, XiaoMiOptions options)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

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

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