Пример #1
0
        public static IApplicationBuilder UseSoundCloudAuthentication(
            [NotNull] this IApplicationBuilder app,
            [NotNull] Action <SoundCloudAuthenticationOptions> configuration)
        {
            var options = new SoundCloudAuthenticationOptions();

            configuration(options);

            return(app.UseMiddleware <SoundCloudAuthenticationMiddleware>(options));
        }
        /// <summary>
        /// Adds the <see cref="SoundCloudAuthenticationMiddleware"/> middleware to the specified <see cref="IApplicationBuilder"/>, which enables Soundcloud authentication capabilities.
        /// </summary>
        /// <param name="app">The <see cref="IApplicationBuilder"/> to add the middleware to.</param>
        /// <param name="options">A <see cref="SoundCloudAuthenticationOptions"/> that specifies options for the middleware.</param>
        /// <returns>A reference to this instance after the operation has completed.</returns>
        public static IApplicationBuilder UseSoundCloudAuthentication(
            [NotNull] this IApplicationBuilder app,
            [NotNull] SoundCloudAuthenticationOptions options)
        {
            if (app == null)
            {
                throw new ArgumentNullException(nameof(app));
            }

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

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

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

            var options = new SoundCloudAuthenticationOptions();

            configuration(options);

            return(app.UseMiddleware <SoundCloudAuthenticationMiddleware>(Options.Create(options)));
        }
Пример #4
0
 public static IApplicationBuilder UseSoundCloudAuthentication(
     [NotNull] this IApplicationBuilder app,
     [NotNull] SoundCloudAuthenticationOptions options)
 {
     return(app.UseMiddleware <SoundCloudAuthenticationMiddleware>(options));
 }