// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.AspNet.Authentication.Facebook; using Microsoft.Framework.ConfigurationModel; using Microsoft.Framework.Internal; namespace Microsoft.Framework.DependencyInjection { /// /// Extension methods for using . /// public static class FacebookServiceCollectionExtensions { public static IServiceCollection ConfigureFacebookAuthentication([NotNull] this IServiceCollection services, [NotNull] Action configure) { return services.ConfigureFacebookAuthentication(configure, optionsName: ""); } public static IServiceCollection ConfigureFacebookAuthentication([NotNull] this IServiceCollection services, [NotNull] Action configure, string optionsName) { return services.Configure(configure, optionsName); } public static IServiceCollection ConfigureFacebookAuthentication([NotNull] this IServiceCollection services, [NotNull] IConfiguration config) { return services.ConfigureFacebookAuthentication(config, optionsName: ""); } public static IServiceCollection ConfigureFacebookAuthentication([NotNull] this IServiceCollection services, [NotNull] IConfiguration config, string optionsName) { return services.Configure(config, optionsName); } } }