Beispiel #1
0
        /// <summary>
        /// Adds the <see cref="AutodeskAuthenticationMiddleware"/> middleware to the specified
        /// <see cref="IApplicationBuilder"/>, which enables Autodesk authentication capabilities.
        /// </summary>
        /// <param name="app">The <see cref="IApplicationBuilder"/> to add the middleware to.</param>
        /// <param name="options">A <see cref="AutodeskAuthenticationOptions"/> that specifies options for the middleware.</param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static IApplicationBuilder UseAutodeskAuthentication(
            [NotNull] this IApplicationBuilder app,
            [NotNull] AutodeskAuthenticationOptions options)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

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

            return(app.UseMiddleware <AutodeskAuthenticationMiddleware>(Options.Create(options)));
        }
Beispiel #2
0
        /// <summary>
        /// Adds the <see cref="AutodeskAuthenticationMiddleware"/> middleware to the specified
        /// <see cref="IApplicationBuilder"/>, which enables Autodesk 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="AutodeskAuthenticationOptions"/>.</param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static IApplicationBuilder UseAutodeskAuthentication(
            [NotNull] this IApplicationBuilder app,
            [NotNull] Action <AutodeskAuthenticationOptions> configuration)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

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

            var options = new AutodeskAuthenticationOptions();

            configuration(options);

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