示例#1
0
        public static IAppBuilder UseStravaAuthentication(this IAppBuilder app, StravaAuthenticationOptions options)
        {
            if (app == null)
            {
                throw new ArgumentNullException("app");
            }
            if (options == null)
            {
                throw new ArgumentNullException("options");
            }

            app.Use(typeof(StravaAuthenticationMiddleware), app, options);
            return(app);
        }
示例#2
0
        /// <summary>
        /// Adds the <see cref="StravaAuthenticationMiddleware"/> middleware to the specified
        /// <see cref="IApplicationBuilder"/>, which enables Strava authentication capabilities.
        /// </summary>
        /// <param name="app">The <see cref="IApplicationBuilder"/> to add the middleware to.</param>
        /// <param name="options">A <see cref="StravaAuthenticationOptions"/> that specifies options for the middleware.</param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static IApplicationBuilder UseStravaAuthentication(
            [NotNull] this IApplicationBuilder app,
            [NotNull] StravaAuthenticationOptions options)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

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

            return(app.UseMiddleware <StravaAuthenticationMiddleware>(Options.Create(options)));
        }
示例#3
0
        /// <summary>
        /// Adds the <see cref="StravaAuthenticationMiddleware"/> middleware to the specified
        /// <see cref="IApplicationBuilder"/>, which enables Strava authentication capabilities.
        /// </summary>
        /// <param name="app">The <see cref="IApplicationBuilder"/> to add the middleware to.</param>
        /// <param name="configuration">An action delegate to configure the provided <see cref="StravaAuthenticationOptions"/>.</param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static IApplicationBuilder UseStravaAuthentication(
            [NotNull] this IApplicationBuilder app,
            [NotNull] Action <StravaAuthenticationOptions> configuration)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

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

            var options = new StravaAuthenticationOptions();

            configuration(options);

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