淘宝用户授权过程中所涉及到的基本信息
Inheritance: Microsoft.AspNetCore.Builder.OAuthOptions
        /// <summary>
        /// Adds the <see cref="TaobaoMiddleware"/> middleware to the specified <see cref="IApplicationBuilder"/>, which enables Taobao authentication capabilities.
        /// </summary>
        /// <param name="app">The <see cref="IApplicationBuilder" /> to add the middleware to.</param>
        /// <param name="options">A <see cref="BaiduOptions"/> that specifies options for the middleware.</param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static IApplicationBuilder UseTaobaoAuthentication(this IApplicationBuilder app, TaobaoOptions options)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

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

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

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

            return(app.UseMiddleware <TaobaoMiddleware>(Options.Create(options)));
        }