Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the authentication types in the authentication manager.
Namespace: Microsoft.Owin.Security
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
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. |
See Also
IAuthenticationManager Interface
Microsoft.Owin.Security Namespace
Return to top
IAuthenticationManager.GetAuthenticationTypes Method ()
Lists all of the description data provided by authentication middleware that have been chained
Syntax
IEnumerable<AuthenticationDescription> GetAuthenticationTypes()
IEnumerable<AuthenticationDescription^>^ GetAuthenticationTypes()
abstract GetAuthenticationTypes : unit -> IEnumerable<AuthenticationDescription>
Function GetAuthenticationTypes As IEnumerable(Of AuthenticationDescription)
Return Value
Type: System.Collections.Generic.IEnumerable<AuthenticationDescription>
The authentication descriptions
Return to top
IAuthenticationManager.GetAuthenticationTypes Method (Func<AuthenticationDescription, Boolean>)
Lists the description data of all of the authentication middleware which are true for a given predicate.
Syntax
IEnumerable<AuthenticationDescription> GetAuthenticationTypes(
Func<AuthenticationDescription, bool> predicate
)
IEnumerable<AuthenticationDescription^>^ GetAuthenticationTypes(
Func<AuthenticationDescription^, bool>^ predicate
)
abstract GetAuthenticationTypes :
predicate:Func<AuthenticationDescription, bool> -> IEnumerable<AuthenticationDescription>
Function GetAuthenticationTypes (
predicate As Func(Of AuthenticationDescription, Boolean)
) As IEnumerable(Of AuthenticationDescription)
Parameters
predicate
Type: System.Func<AuthenticationDescription, Boolean>A function provided by the caller which returns true for descriptions that should be in the returned list.
Return Value
Type: System.Collections.Generic.IEnumerable<AuthenticationDescription>
The authentication descriptions
Return to top