AuthenticationManagerExtensions.GetExternalLoginInfo Method (IAuthenticationManager)
Extracts the login information out of an external identity.
Namespace: Microsoft.Owin.Security
Assembly: Microsoft.AspNet.Identity.Owin (in Microsoft.AspNet.Identity.Owin.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetExternalLoginInfo ( _
manager As IAuthenticationManager _
) As ExternalLoginInfo
'Usage
Dim manager As IAuthenticationManager
Dim returnValue As ExternalLoginInfo
returnValue = manager.GetExternalLoginInfo()
public static ExternalLoginInfo GetExternalLoginInfo(
this IAuthenticationManager manager
)
[ExtensionAttribute]
public:
static ExternalLoginInfo^ GetExternalLoginInfo(
IAuthenticationManager^ manager
)
static member GetExternalLoginInfo :
manager:IAuthenticationManager -> ExternalLoginInfo
public static function GetExternalLoginInfo(
manager : IAuthenticationManager
) : ExternalLoginInfo
Parameters
- manager
Type: Microsoft.Owin.Security.IAuthenticationManager
The authentication manager.
Return Value
Type: Microsoft.AspNet.Identity.Owin.ExternalLoginInfo
The external login information.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IAuthenticationManager. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).
See Also
Reference
AuthenticationManagerExtensions Class
Microsoft.Owin.Security Namespace