WindowsAuthenticationProviderExtensionsAddWindowsAuthenticationProvider(IServiceCollection, WindowsAuthenticationProviderOptions) Method

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

Definition

Namespace: Gemstone.Security.AuthenticationProviders
Assembly: Gemstone.Security (in Gemstone.Security.dll) Version: 1.0.166 -- Release Build+3ac73912f52c3309a818fcc8cd731758651aaeae
public static IServiceCollection AddWindowsAuthenticationProvider(
	this IServiceCollection services,
	WindowsAuthenticationProviderOptions options
)

Parameters

services  IServiceCollection
The collection of services
options  WindowsAuthenticationProviderOptions
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