|
<?xml version="1.0"?>
|
|
<doc>
|
|
<assembly>
|
|
<name>Microsoft.AspNet.Identity.Owin</name>
|
|
</assembly>
|
|
<members>
|
|
<member name="T:Microsoft.AspNet.Identity.Owin.IdentityFactoryMiddleware`2">
|
|
<summary>
|
|
OwinMiddleware that initializes an object for use in the OwinContext via the Get/Set generic extensions method
|
|
</summary>
|
|
<typeparam name="TResult"></typeparam>
|
|
<typeparam name="TOptions"></typeparam>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.IdentityFactoryMiddleware`2.#ctor(Microsoft.Owin.OwinMiddleware,`1)">
|
|
<summary>
|
|
Constructor
|
|
</summary>
|
|
<param name="next">The next middleware in the OWIN pipeline to invoke</param>
|
|
<param name="options">Configuration options for the middleware</param>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.IdentityFactoryMiddleware`2.Invoke(Microsoft.Owin.IOwinContext)">
|
|
<summary>
|
|
Create an object using the Options.Provider, storing it in the OwinContext and then disposes the object when finished
|
|
</summary>
|
|
<param name="context"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityFactoryMiddleware`2.Options">
|
|
<summary>
|
|
Configuration options
|
|
</summary>
|
|
</member>
|
|
<member name="T:Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions`1">
|
|
<summary>
|
|
Configuration options for a IdentityFactoryMiddleware
|
|
</summary>
|
|
<typeparam name="T"></typeparam>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions`1.DataProtectionProvider">
|
|
<summary>
|
|
Used to configure the data protection provider
|
|
</summary>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions`1.Provider">
|
|
<summary>
|
|
Provider used to Create and Dispose objects
|
|
</summary>
|
|
</member>
|
|
<member name="T:Microsoft.AspNet.Identity.Owin.IIdentityFactoryProvider`1">
|
|
<summary>
|
|
Interface used to create objects per request
|
|
</summary>
|
|
<typeparam name="T"></typeparam>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.IIdentityFactoryProvider`1.Create(Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions{`0},Microsoft.Owin.IOwinContext)">
|
|
<summary>
|
|
Called once per request to create an object
|
|
</summary>
|
|
<param name="options"></param>
|
|
<param name="context"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.IIdentityFactoryProvider`1.Dispose(Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions{`0},`0)">
|
|
<summary>
|
|
Called at the end of the request to dispose the object created
|
|
</summary>
|
|
<param name="options"></param>
|
|
<param name="instance"></param>
|
|
</member>
|
|
<member name="T:Microsoft.AspNet.Identity.Owin.IdentityFactoryProvider`1">
|
|
<summary>
|
|
Used to configure how the IdentityFactoryMiddleware will create an instance of the specified type for each OwinContext
|
|
</summary>
|
|
<typeparam name="T"></typeparam>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.IdentityFactoryProvider`1.#ctor">
|
|
<summary>
|
|
Constructor
|
|
</summary>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.IdentityFactoryProvider`1.Create(Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions{`0},Microsoft.Owin.IOwinContext)">
|
|
<summary>
|
|
Calls the OnCreate Delegate
|
|
</summary>
|
|
<param name="options"></param>
|
|
<param name="context"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.IdentityFactoryProvider`1.Dispose(Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions{`0},`0)">
|
|
<summary>
|
|
Calls the OnDispose delegate
|
|
</summary>
|
|
<param name="options"></param>
|
|
<param name="instance"></param>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityFactoryProvider`1.OnCreate">
|
|
<summary>
|
|
A delegate assigned to this property will be invoked when the related method is called
|
|
</summary>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityFactoryProvider`1.OnDispose">
|
|
<summary>
|
|
A delegate assigned to this property will be invoked when the related method is called
|
|
</summary>
|
|
</member>
|
|
<member name="T:Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider`1">
|
|
<summary>
|
|
Token provider that uses an IDataProtector to generate encrypted tokens based off of the security stamp
|
|
</summary>
|
|
</member>
|
|
<member name="T:Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider`2">
|
|
<summary>
|
|
Token provider that uses an IDataProtector to generate encrypted tokens based off of the security stamp
|
|
</summary>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider`2.#ctor(Microsoft.Owin.Security.DataProtection.IDataProtector)">
|
|
<summary>
|
|
Constructor
|
|
</summary>
|
|
<param name="protector"></param>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider`2.GenerateAsync(System.String,Microsoft.AspNet.Identity.UserManager{`0,`1},`0)">
|
|
<summary>
|
|
Generate a protected string for a user
|
|
</summary>
|
|
<param name="purpose"></param>
|
|
<param name="manager"></param>
|
|
<param name="user"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider`2.ValidateAsync(System.String,System.String,Microsoft.AspNet.Identity.UserManager{`0,`1},`0)">
|
|
<summary>
|
|
Return false if the token is not valid
|
|
</summary>
|
|
<param name="purpose"></param>
|
|
<param name="token"></param>
|
|
<param name="manager"></param>
|
|
<param name="user"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider`2.IsValidProviderForUserAsync(Microsoft.AspNet.Identity.UserManager{`0,`1},`0)">
|
|
<summary>
|
|
Returns true if the provider can be used to generate tokens for this user
|
|
</summary>
|
|
<param name="manager"></param>
|
|
<param name="user"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider`2.NotifyAsync(System.String,Microsoft.AspNet.Identity.UserManager{`0,`1},`0)">
|
|
<summary>
|
|
This provider no-ops by default when asked to notify a user
|
|
</summary>
|
|
<param name="token"></param>
|
|
<param name="manager"></param>
|
|
<param name="user"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider`2.Protector">
|
|
<summary>
|
|
IDataProtector for the token
|
|
</summary>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider`2.TokenLifespan">
|
|
<summary>
|
|
Lifespan after which the token is considered expired
|
|
</summary>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.DataProtectorTokenProvider`1.#ctor(Microsoft.Owin.Security.DataProtection.IDataProtector)">
|
|
<summary>
|
|
Constructor
|
|
</summary>
|
|
<param name="protector"></param>
|
|
</member>
|
|
<member name="T:Owin.AppBuilderExtensions">
|
|
<summary>
|
|
Extensions off of IAppBuilder to make it easier to configure the SignInCookies
|
|
</summary>
|
|
</member>
|
|
<member name="M:Owin.AppBuilderExtensions.CreatePerOwinContext``1(Owin.IAppBuilder,System.Func{``0})">
|
|
<summary>
|
|
Registers a callback that will be invoked to create an instance of type T that will be stored in the OwinContext
|
|
which can fetched via context.Get
|
|
</summary>
|
|
<typeparam name="T"></typeparam>
|
|
<param name="app">The <see cref="T:Owin.IAppBuilder"/> passed to the configuration method</param>
|
|
<param name="createCallback">Invoked to create an instance of T</param>
|
|
<returns>The updated <see cref="T:Owin.IAppBuilder"/></returns>
|
|
</member>
|
|
<member name="M:Owin.AppBuilderExtensions.CreatePerOwinContext``1(Owin.IAppBuilder,System.Func{Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions{``0},Microsoft.Owin.IOwinContext,``0})">
|
|
<summary>
|
|
Registers a callback that will be invoked to create an instance of type T that will be stored in the OwinContext
|
|
which can fetched via context.Get
|
|
</summary>
|
|
<typeparam name="T"></typeparam>
|
|
<param name="app"></param>
|
|
<param name="createCallback"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Owin.AppBuilderExtensions.UseExternalSignInCookie(Owin.IAppBuilder)">
|
|
<summary>
|
|
Configure the app to use owin middleware based cookie authentication for external identities
|
|
</summary>
|
|
<param name="app"></param>
|
|
</member>
|
|
<member name="M:Owin.AppBuilderExtensions.UseExternalSignInCookie(Owin.IAppBuilder,System.String)">
|
|
<summary>
|
|
Configure the app to use owin middleware based cookie authentication for external identities
|
|
</summary>
|
|
<param name="app"></param>
|
|
<param name="externalAuthenticationType"></param>
|
|
</member>
|
|
<member name="M:Owin.AppBuilderExtensions.UseTwoFactorSignInCookie(Owin.IAppBuilder,System.String,System.TimeSpan)">
|
|
<summary>
|
|
Configures a cookie intended to be used to store the partial credentials for two factor authentication
|
|
</summary>
|
|
<param name="app"></param>
|
|
<param name="authenticationType"></param>
|
|
<param name="expires"></param>
|
|
</member>
|
|
<member name="M:Owin.AppBuilderExtensions.UseTwoFactorRememberBrowserCookie(Owin.IAppBuilder,System.String)">
|
|
<summary>
|
|
Configures a cookie intended to be used to store whether two factor authentication has been done already
|
|
</summary>
|
|
<param name="app"></param>
|
|
<param name="authenticationType"></param>
|
|
</member>
|
|
<member name="M:Owin.AppBuilderExtensions.UseOAuthBearerTokens(Owin.IAppBuilder,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions)">
|
|
<summary>
|
|
Configure the app to use owin middleware based oauth bearer tokens
|
|
</summary>
|
|
<param name="app"></param>
|
|
<param name="options"></param>
|
|
</member>
|
|
<member name="T:Microsoft.Owin.Security.AuthenticationManagerExtensions">
|
|
<summary>
|
|
Extensions methods on IAuthenticationManager that add methods for using the default Application and External
|
|
authentication type constants
|
|
</summary>
|
|
</member>
|
|
<member name="M:Microsoft.Owin.Security.AuthenticationManagerExtensions.GetExternalAuthenticationTypes(Microsoft.Owin.Security.IAuthenticationManager)">
|
|
<summary>
|
|
Return the authentication types which are considered external because they have captions
|
|
</summary>
|
|
<param name="manager"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.Owin.Security.AuthenticationManagerExtensions.GetExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String)">
|
|
<summary>
|
|
Return the identity associated with the default external authentication type
|
|
</summary>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.Owin.Security.AuthenticationManagerExtensions.GetExternalLoginInfoAsync(Microsoft.Owin.Security.IAuthenticationManager)">
|
|
<summary>
|
|
Extracts login info out of an external identity
|
|
</summary>
|
|
<param name="manager"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.Owin.Security.AuthenticationManagerExtensions.GetExternalLoginInfo(Microsoft.Owin.Security.IAuthenticationManager)">
|
|
<summary>
|
|
Extracts login info out of an external identity
|
|
</summary>
|
|
<param name="manager"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.Owin.Security.AuthenticationManagerExtensions.GetExternalLoginInfo(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String)">
|
|
<summary>
|
|
Extracts login info out of an external identity
|
|
</summary>
|
|
<param name="manager"></param>
|
|
<param name="xsrfKey">key that will be used to find the userId to verify</param>
|
|
<param name="expectedValue">
|
|
the value expected to be found using the xsrfKey in the AuthenticationResult.Properties
|
|
dictionary
|
|
</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.Owin.Security.AuthenticationManagerExtensions.GetExternalLoginInfoAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String)">
|
|
<summary>
|
|
Extracts login info out of an external identity
|
|
</summary>
|
|
<param name="manager"></param>
|
|
<param name="xsrfKey">key that will be used to find the userId to verify</param>
|
|
<param name="expectedValue">
|
|
the value expected to be found using the xsrfKey in the AuthenticationResult.Properties
|
|
dictionary
|
|
</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.Owin.Security.AuthenticationManagerExtensions.TwoFactorBrowserRememberedAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String)">
|
|
<summary>
|
|
Returns true if there is a TwoFactorRememberBrowser cookie for a user
|
|
</summary>
|
|
<param name="manager"></param>
|
|
<param name="userId"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.Owin.Security.AuthenticationManagerExtensions.CreateTwoFactorRememberBrowserIdentity(Microsoft.Owin.Security.IAuthenticationManager,System.String)">
|
|
<summary>
|
|
Creates a TwoFactorRememberBrowser cookie for a user
|
|
</summary>
|
|
<param name="manager"></param>
|
|
<param name="userId"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="T:Microsoft.AspNet.Identity.Owin.OwinContextExtensions">
|
|
<summary>
|
|
Extension methods for OwinContext/>
|
|
</summary>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.OwinContextExtensions.Set``1(Microsoft.Owin.IOwinContext,``0)">
|
|
<summary>
|
|
Stores an object in the OwinContext using a key based on the AssemblyQualified type name
|
|
</summary>
|
|
<typeparam name="T"></typeparam>
|
|
<param name="context"></param>
|
|
<param name="value"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.OwinContextExtensions.Get``1(Microsoft.Owin.IOwinContext)">
|
|
<summary>
|
|
Retrieves an object from the OwinContext using a key based on the AssemblyQualified type name
|
|
</summary>
|
|
<typeparam name="T"></typeparam>
|
|
<param name="context"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.OwinContextExtensions.GetUserManager``1(Microsoft.Owin.IOwinContext)">
|
|
<summary>
|
|
Get the user manager from the context
|
|
</summary>
|
|
<typeparam name="TManager"></typeparam>
|
|
<param name="context"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="T:Microsoft.AspNet.Identity.Owin.ExternalLoginInfo">
|
|
<summary>
|
|
Used to return information needed to associate an external login
|
|
</summary>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.ExternalLoginInfo.Login">
|
|
<summary>
|
|
Associated login data
|
|
</summary>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.ExternalLoginInfo.DefaultUserName">
|
|
<summary>
|
|
Suggested user name for a user
|
|
</summary>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.ExternalLoginInfo.Email">
|
|
<summary>
|
|
Email claim from the external identity
|
|
</summary>
|
|
</member>
|
|
<member name="P:Microsoft.AspNet.Identity.Owin.ExternalLoginInfo.ExternalIdentity">
|
|
<summary>
|
|
The external identity
|
|
</summary>
|
|
</member>
|
|
<member name="T:Microsoft.AspNet.Identity.Owin.SecurityStampValidator">
|
|
<summary>
|
|
Static helper class used to configure a CookieAuthenticationProvider to validate a cookie against a user's security
|
|
stamp
|
|
</summary>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.SecurityStampValidator.OnValidateIdentity``2(System.TimeSpan,System.Func{``0,``1,System.Threading.Tasks.Task{System.Security.Claims.ClaimsIdentity}})">
|
|
<summary>
|
|
Can be used as the ValidateIdentity method for a CookieAuthenticationProvider which will check a user's security
|
|
stamp after validateInterval
|
|
Rejects the identity if the stamp changes, and otherwise will call regenerateIdentity to sign in a new
|
|
ClaimsIdentity
|
|
</summary>
|
|
<typeparam name="TManager"></typeparam>
|
|
<typeparam name="TUser"></typeparam>
|
|
<param name="validateInterval"></param>
|
|
<param name="regenerateIdentity"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Microsoft.AspNet.Identity.Owin.SecurityStampValidator.OnValidateIdentity``3(System.TimeSpan,System.Func{``0,``1,System.Threading.Tasks.Task{System.Security.Claims.ClaimsIdentity}},System.Func{System.Security.Claims.ClaimsIdentity,``2})">
|
|
<summary>
|
|
Can be used as the ValidateIdentity method for a CookieAuthenticationProvider which will check a user's security
|
|
stamp after validateInterval
|
|
Rejects the identity if the stamp changes, and otherwise will call regenerateIdentity to sign in a new
|
|
ClaimsIdentity
|
|
</summary>
|
|
<typeparam name="TManager"></typeparam>
|
|
<typeparam name="TUser"></typeparam>
|
|
<typeparam name="TKey"></typeparam>
|
|
<param name="validateInterval"></param>
|
|
<param name="regenerateIdentityCallback"></param>
|
|
<param name="getUserIdCallback"></param>
|
|
<returns></returns>
|
|
</member>
|
|
</members>
|
|
</doc>
|