IAuthenticationManager.GetAuthenticationTypes Method

Definition

Overloads

Name Description
GetAuthenticationTypes()

Lists all of the description data provided by authentication middleware that have been chained

GetAuthenticationTypes(Func<AuthenticationDescription,Boolean>)

Lists the description data of all of the authentication middleware which are true for a given predicate

GetAuthenticationTypes()

Source:
IAuthenticationManager.cs

Lists all of the description data provided by authentication middleware that have been chained

public System.Collections.Generic.IEnumerable<Microsoft.Owin.Security.AuthenticationDescription> GetAuthenticationTypes();
abstract member GetAuthenticationTypes : unit -> seq<Microsoft.Owin.Security.AuthenticationDescription>
Public Function GetAuthenticationTypes () As IEnumerable(Of AuthenticationDescription)

Returns

The authentication descriptions

Applies to

GetAuthenticationTypes(Func<AuthenticationDescription,Boolean>)

Source:
IAuthenticationManager.cs

Lists the description data of all of the authentication middleware which are true for a given predicate

public System.Collections.Generic.IEnumerable<Microsoft.Owin.Security.AuthenticationDescription> GetAuthenticationTypes(Func<Microsoft.Owin.Security.AuthenticationDescription,bool> predicate);
abstract member GetAuthenticationTypes : Func<Microsoft.Owin.Security.AuthenticationDescription, bool> -> seq<Microsoft.Owin.Security.AuthenticationDescription>
Public Function GetAuthenticationTypes (predicate As Func(Of AuthenticationDescription, Boolean)) As IEnumerable(Of AuthenticationDescription)

Parameters

predicate
Func<AuthenticationDescription,Boolean>

A function provided by the caller which returns true for descriptions that should be in the returned list

Returns

The authentication descriptions

Applies to