OAuthAuthenticationProviderExtensionsAddOAuthAuthenticationProvider(IServiceCollection, String, OAuthAuthenticationProviderOptions) Method

Adds the OAuth authentication provider as a singleton service using the given identity and options.

Definition

Namespace: Gemstone.Security.AuthenticationProviders
Assembly: Gemstone.Security (in Gemstone.Security.dll) Version: 1.0.167 -- Release Build+327f7394dcedeaebafc0dd7a935c53bbb45ff86a
public static IServiceCollection AddOAuthAuthenticationProvider(
	this IServiceCollection services,
	string identity,
	OAuthAuthenticationProviderOptions options
)

Parameters

services  IServiceCollection
The collection of services
identity  String
The identity of the authentication provider
options  OAuthAuthenticationProviderOptions
The options used to configure the authentication provider

Return Value

IServiceCollection
The collection of services.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IServiceCollection. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also