Update 07082021

This commit is contained in:
2021-08-07 09:44:37 +02:00
parent 1ff218a129
commit 4d443fdfd4
5663 changed files with 6581858 additions and 1321 deletions

View File

@@ -0,0 +1,642 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.AspNet.Identity.Owin</name>
</assembly>
<members>
<member name="T:Microsoft.AspNet.Identity.Owin.SignInManagerExtensions">
<summary>
Extension methods for SignInManager/>
</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManagerExtensions.CreateUserIdentity``2(Microsoft.AspNet.Identity.Owin.SignInManager{``0,``1},``0)">
<summary>
Called to generate the ClaimsIdentity for the user, override to add additional claims before SignIn
</summary>
<param name="manager"></param>
<param name="user"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManagerExtensions.SignIn``2(Microsoft.AspNet.Identity.Owin.SignInManager{``0,``1},``0,System.Boolean,System.Boolean)">
<summary>
Creates a user identity and then signs the identity using the AuthenticationManager
</summary>
<param name="manager"></param>
<param name="user"></param>
<param name="isPersistent"></param>
<param name="rememberBrowser"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManagerExtensions.SendTwoFactorCode``2(Microsoft.AspNet.Identity.Owin.SignInManager{``0,``1},System.String)">
<summary>
Send a two factor code to a user
</summary>
<param name="manager"></param>
<param name="provider"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManagerExtensions.GetVerifiedUserId``2(Microsoft.AspNet.Identity.Owin.SignInManager{``0,``1})">
<summary>
Get the user id that has been verified already or null.
</summary>
<param name="manager"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManagerExtensions.HasBeenVerified``2(Microsoft.AspNet.Identity.Owin.SignInManager{``0,``1})">
<summary>
Has the user been verified (ie either via password or external login)
</summary>
<param name="manager"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManagerExtensions.TwoFactorSignIn``2(Microsoft.AspNet.Identity.Owin.SignInManager{``0,``1},System.String,System.String,System.Boolean,System.Boolean)">
<summary>
Two factor verification step
</summary>
<param name="manager"></param>
<param name="provider"></param>
<param name="code"></param>
<param name="isPersistent"></param>
<param name="rememberBrowser"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManagerExtensions.ExternalSignIn``2(Microsoft.AspNet.Identity.Owin.SignInManager{``0,``1},Microsoft.AspNet.Identity.Owin.ExternalLoginInfo,System.Boolean)">
<summary>
Sign the user in using an associated external login
</summary>
<param name="manager"></param>
<param name="loginInfo"></param>
<param name="isPersistent"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManagerExtensions.PasswordSignIn``2(Microsoft.AspNet.Identity.Owin.SignInManager{``0,``1},System.String,System.String,System.Boolean,System.Boolean)">
<summary>
Sign in the user in using the user name and password
</summary>
<param name="manager"></param>
<param name="userName"></param>
<param name="password"></param>
<param name="isPersistent"></param>
<param name="shouldLockout"></param>
<returns></returns>
</member>
<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.CreatePerOwinContext``1(Owin.IAppBuilder,System.Func{Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions{``0},Microsoft.Owin.IOwinContext,``0},System.Action{Microsoft.AspNet.Identity.Owin.IdentityFactoryOptions{``0},``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>
<param name="disposeCallback"></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.GetExternalIdentity(Microsoft.Owin.Security.IAuthenticationManager,System.String)">
<summary>
Return the identity associated with the default external authentication type
</summary>
<param name="manager"></param>
<param name="externalAuthenticationType"></param>
<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.TwoFactorBrowserRemembered(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>
<member name="T:Microsoft.AspNet.Identity.Owin.SignInManager`2">
<summary>
Manages Sign In operations for users
</summary>
<typeparam name="TUser"></typeparam>
<typeparam name="TKey"></typeparam>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.#ctor(Microsoft.AspNet.Identity.UserManager{`0,`1},Microsoft.Owin.Security.IAuthenticationManager)">
<summary>
Constructor
</summary>
<param name="userManager"></param>
<param name="authenticationManager"></param>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.CreateUserIdentityAsync(`0)">
<summary>
Called to generate the ClaimsIdentity for the user, override to add additional claims before SignIn
</summary>
<param name="user"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.ConvertIdToString(`1)">
<summary>
Convert a TKey userId to a string, by default this just calls ToString()
</summary>
<param name="id"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.ConvertIdFromString(System.String)">
<summary>
Convert a string id to the proper TKey using Convert.ChangeType
</summary>
<param name="id"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.SignInAsync(`0,System.Boolean,System.Boolean)">
<summary>
Creates a user identity and then signs the identity using the AuthenticationManager
</summary>
<param name="user"></param>
<param name="isPersistent"></param>
<param name="rememberBrowser"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.SendTwoFactorCodeAsync(System.String)">
<summary>
Send a two factor code to a user
</summary>
<param name="provider"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.GetVerifiedUserIdAsync">
<summary>
Get the user id that has been verified already or null.
</summary>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.HasBeenVerifiedAsync">
<summary>
Has the user been verified (ie either via password or external login)
</summary>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.TwoFactorSignInAsync(System.String,System.String,System.Boolean,System.Boolean)">
<summary>
Two factor verification step
</summary>
<param name="provider"></param>
<param name="code"></param>
<param name="isPersistent"></param>
<param name="rememberBrowser"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.ExternalSignInAsync(Microsoft.AspNet.Identity.Owin.ExternalLoginInfo,System.Boolean)">
<summary>
Sign the user in using an associated external login
</summary>
<param name="loginInfo"></param>
<param name="isPersistent"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.PasswordSignInAsync(System.String,System.String,System.Boolean,System.Boolean)">
<summary>
Sign in the user in using the user name and password
</summary>
<param name="userName"></param>
<param name="password"></param>
<param name="isPersistent"></param>
<param name="shouldLockout"></param>
<returns></returns>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.Dispose">
<summary>
Dispose
</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.SignInManager`2.Dispose(System.Boolean)">
<summary>
If disposing, calls dispose on the Context. Always nulls out the Context
</summary>
<param name="disposing"></param>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.SignInManager`2.AuthenticationType">
<summary>
AuthenticationType that will be used by sign in, defaults to DefaultAuthenticationTypes.ApplicationCookie
</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.SignInManager`2.UserManager">
<summary>
Used to operate on users
</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.SignInManager`2.AuthenticationManager">
<summary>
Used to sign in identities
</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.SignInStatus">
<summary>
Possible results from a sign in attempt
</summary>
</member>
<member name="F:Microsoft.AspNet.Identity.Owin.SignInStatus.Success">
<summary>
Sign in was successful
</summary>
</member>
<member name="F:Microsoft.AspNet.Identity.Owin.SignInStatus.LockedOut">
<summary>
User is locked out
</summary>
</member>
<member name="F:Microsoft.AspNet.Identity.Owin.SignInStatus.RequiresVerification">
<summary>
Sign in requires addition verification (i.e. two factor)
</summary>
</member>
<member name="F:Microsoft.AspNet.Identity.Owin.SignInStatus.Failure">
<summary>
Sign in failed
</summary>
</member>
</members>
</doc>

View File

@@ -0,0 +1,198 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.AspNet.Identity.Owin</name>
</assembly>
<members>
<member name="T:Microsoft.AspNet.Identity.IdentityExtensions">
<summary>Erweiterungen, die das Abrufen der Benutzername-/Benutzer-ID-Ansprüche aus einer Identität vereinfachen.</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityExtensions.FindFirstValue(System.Security.Claims.ClaimsIdentity,System.String)">
<summary>Gibt den Anspruchswert für den ersten Anspruch mit dem angegebenen Typ zurück, wenn vorhanden, andernfalls null.</summary>
<returns>Gibt <see cref="T:System.String" /> zurück.</returns>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityExtensions.GetUserId(System.Security.Principal.IIdentity)">
<summary>Gibt die Benutzer-ID mithilfe von UserIdClaimType zurück.</summary>
<returns>Gibt <see cref="T:System.String" /> zurück.</returns>
</member>
<member name="M:Microsoft.AspNet.Identity.IdentityExtensions.GetUserName(System.Security.Principal.IIdentity)">
<summary>Gibt den Benutzernamen mithilfe von UserNameClaimType zurück.</summary>
<returns>Gibt <see cref="T:System.String" /> zurück.</returns>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager">
<summary>Owin aware identity manager that adds sign in/sign out and claims functionality</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager.#ctor(Microsoft.AspNet.Identity.IdentitySettings,Microsoft.AspNet.Identity.IIdentityStore)">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager.#ctor(Microsoft.AspNet.Identity.IIdentityStore)">
<summary>Constructor that uses the default settings</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.AuthenticationIdentityManager.Authentication">
<summary>Authentication APIs (SignIn, SignOut)</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.AuthenticationManager">
<summary>Authentication APIs (SignIn/SignOut)</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.#ctor(Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions,Microsoft.AspNet.Identity.IdentityManager)">
<summary>Constructor</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.CheckPasswordAndSignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Validates that the password matches and then signs the token in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.ConfirmSignInTokenAsync(System.String,System.Threading.CancellationToken)">
<summary>If the token is found, allows the user to sign in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.CreateAndSignInExternalUserAsync(Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser,System.Threading.CancellationToken)">
<summary>Create an external user and sign them in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.CreateApplicationClaimsIdentity(System.Collections.Generic.IEnumerable{System.Security.Claims.Claim})">
<summary>Creates a claims identity with the ApplicationAuthenticaitonType, UserNameClaimType and ConfigRole type</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.GetExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager)">
<summary>Return the identity associated with the default external authentication type</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.GetUserIdentityClaimsAsync(System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)">
<summary>Return the claims for a token, which will contain the UserIdClaimType, UserNameClaimType, a claim representing each Role and any claims specified in the UserClaims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.LinkExternalIdentityAsync(System.Security.Claims.ClaimsIdentity,System.String,System.Threading.CancellationToken)">
<summary>Try to link the given identity to the specified token</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.AuthenticationManager.Manager">
<summary>IdentityManager for operations</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.AuthenticationManager.Options">
<summary>Config</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.RequireTokenConfirmationForSignInAsync(System.String,System.String,System.DateTime,System.Threading.CancellationToken)">
<summary>Create a token for the specified user and disables sign in. ConfirmSignInTokenAsync will confirm this token and reenable sign in.</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.SignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Boolean,System.Threading.CancellationToken)">
<summary>Signs in the active principal with a identity that contains claims set to the result of GetUserIdentityClaims and the specified claims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.SignInExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.Threading.CancellationToken)">
<summary>Signs the identity in if the external identity is already linked</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.AuthenticationManager.UpdateUserDisableSignIn(System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Set the AllowSignIn flag for a user</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.IAuthenticationManager">
<summary>Authentication APIs (SignIn/SignOut)</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.CheckPasswordAndSignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Validates that the password matches and then signs the token in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.ConfirmSignInTokenAsync(System.String,System.Threading.CancellationToken)">
<summary>If the token is found, allows the user to sign in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.CreateAndSignInExternalUserAsync(Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser,System.Threading.CancellationToken)">
<summary>Create an external user and sign them in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.CreateApplicationClaimsIdentity(System.Collections.Generic.IEnumerable{System.Security.Claims.Claim})">
<summary>Creates a claims identity with the ApplicationAuthenticaitonType, UserNameClaimType and ConfigRole type</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.GetExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager)">
<summary>Return the identity associated with the default external authentication type</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.GetUserIdentityClaimsAsync(System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)">
<summary>Return the claims for a token, which will contain the UserIdClaimType, UserNameClaimType, a claim representing each Role and any claims specified in the UserClaims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.LinkExternalIdentityAsync(System.Security.Claims.ClaimsIdentity,System.String,System.Threading.CancellationToken)">
<summary>Try to link the given identity to the specified token</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.RequireTokenConfirmationForSignInAsync(System.String,System.String,System.DateTime,System.Threading.CancellationToken)">
<summary>Require a call to ConfirmSignInToken with the given token before this user can be signed in</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.SignInAsync(Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Boolean,System.Threading.CancellationToken)">
<summary>Signs in the active principal with a identity that contains claims set to the result of GetUserIdentityClaims and the specified claims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.SignInExternalIdentityAsync(Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.Threading.CancellationToken)">
<summary>Signs the identity in if the external identity is already linked</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManager.UpdateUserDisableSignIn(System.String,System.Boolean,System.Threading.CancellationToken)">
<summary>Set the AllowSignIn flag for a user</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions">
<summary>Adds extensions methods related to SignIn using OWIN middleware and the IdentityManager to generate the appropriate user claims</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CheckPasswordAndSignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CheckPasswordAndSignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.String,System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.ConfirmSignInToken(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.ConfirmSignInTokenAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CreateAndSignInExternalUser(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.CreateAndSignInExternalUserAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,Microsoft.AspNet.Identity.IUser)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.GetExternalIdentity(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.LinkExternalIdentity(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.LinkExternalIdentityAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.Security.Claims.ClaimsIdentity,System.String)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.RequireTokenConfirmationForSignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String,System.String,System.DateTime)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.RequireTokenConfirmationForSignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,System.String,System.String,System.DateTime)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignIn(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Boolean)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.String,System.Boolean,System.Threading.CancellationToken)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInExternalIdentity(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity)"></member>
<member name="M:Microsoft.AspNet.Identity.Owin.IAuthenticationManagerExtensions.SignInExternalIdentityAsync(Microsoft.AspNet.Identity.Owin.IAuthenticationManager,Microsoft.Owin.Security.IAuthenticationManager,System.Security.Claims.ClaimsIdentity)"></member>
<member name="T:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions">
<summary>Configuration for the Identity system</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.#ctor">
<summary>Default constructor which uses the built in default options</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.ApplicationAuthenticationType">
<summary>The AuthenticationType used in the UseSignInCookies extension method for the active signed in identity.</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.ClaimsIssuer">
<summary>Issuer used for the claims generated</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.ExternalAuthenticationType">
<summary>The AuthenticationType used by the UseSignInCookies extension method for the external signed in identity.</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.LoginPath">
<summary>Path to the login page in the app</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.LogoutPath">
<summary>Path to the logout page in the app</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.RoleClaimType">
<summary>Claim type used for role claims</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.UserIdClaimType">
<summary>Claim type used for the user id</summary>
</member>
<member name="P:Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions.UserNameClaimType">
<summary>Claim type used for the user name</summary>
</member>
<member name="T:Microsoft.AspNet.Identity.Owin.IdentitySettingsExtensions">
<summary>Represents the extensions used in identity settings.</summary>
</member>
<member name="M:Microsoft.AspNet.Identity.Owin.IdentitySettingsExtensions.GetAuthenticationOptions(Microsoft.AspNet.Identity.IdentitySettings)">
<summary>Returns the authentication options for the identity.</summary>
<returns>The authentication options for the identity.</returns>
<param name="settings">The identity settings.</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>
</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.UseExternalSignInCookie(Owin.IAppBuilder)">
<summary>Configure the app to use owin middleware based cookie authentication for external identities</summary>
</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>
</member>
<member name="M:Owin.AppBuilderExtensions.UseOAuthBearerTokens(Owin.IAppBuilder,Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerOptions,System.String)">
<summary>Configure the app to use owin middleware based oauth bearer tokens</summary>
</member>
<member name="M:Owin.AppBuilderExtensions.UseSignInCookies(Owin.IAppBuilder)">
<summary>Use application and external sign in cookies for the app</summary>
</member>
<member name="M:Owin.AppBuilderExtensions.UseSignInCookies(Owin.IAppBuilder,Microsoft.AspNet.Identity.Owin.IdentityAuthenticationOptions)">
<summary>Configure the app to use owin middleware based cookie authentication for the active identity and external identities</summary>
</member>
</members>
</doc>