Skip to content

Instantly share code, notes, and snippets.

@agjohnson
Last active September 9, 2015 00:09
Show Gist options
  • Save agjohnson/dc09d43375c7ab852a0e to your computer and use it in GitHub Desktop.
Save agjohnson/dc09d43375c7ab852a0e to your computer and use it in GitHub Desktop.
items:
- uid: Microsoft.AspNet.Identity.IUserClaimStore`1
id: IUserClaimStore`1
parent: Microsoft.AspNet.Identity
children:
- Microsoft.AspNet.Identity.IUserClaimStore`1.AddClaimsAsync(`0,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserClaimStore`1.GetClaimsAsync(`0,System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserClaimStore`1.GetUsersForClaimAsync(System.Security.Claims.Claim,System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserClaimStore`1.RemoveClaimsAsync(`0,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserClaimStore`1.ReplaceClaimAsync(`0,System.Security.Claims.Claim,System.Security.Claims.Claim,System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserClaimStore`1.yml
name: IUserClaimStore<TUser>
name.vb: IUserClaimStore(Of TUser)
fullName: Microsoft.AspNet.Identity.IUserClaimStore<TUser>
fullName.vb: Microsoft.AspNet.Identity.IUserClaimStore(Of TUser)
type: Interface
source:
remote: &o0
path: src/Microsoft.AspNet.Identity/IUserClaimStore.cs
branch: dev
repo: https://github.com/aspnet/Identity.git
key: a98f8668
path: src/Microsoft.AspNet.Identity/IUserClaimStore.cs
startLine: 14
assemblies:
- Microsoft.AspNet.Identity
namespace: Microsoft.AspNet.Identity
summary: Provides an abstraction for a store of claims for a user.
syntax:
content: 'public interface IUserClaimStore<TUser> : IUserStore<TUser>, IDisposable where TUser : class'
content.vb: Public Interface IUserClaimStore(Of TUser As Class) Inherits IUserStore(Of TUser)
typeParameters:
- id: TUser
description: The type encapsulating a user.
inheritedMembers:
- Microsoft.AspNet.Identity.IUserStore{{TUser}}.GetUserIdAsync({TUser},System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserStore{{TUser}}.GetUserNameAsync({TUser},System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserStore{{TUser}}.SetUserNameAsync({TUser},System.String,System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserStore{{TUser}}.GetNormalizedUserNameAsync({TUser},System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserStore{{TUser}}.SetNormalizedUserNameAsync({TUser},System.String,System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserStore{{TUser}}.CreateAsync({TUser},System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserStore{{TUser}}.UpdateAsync({TUser},System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserStore{{TUser}}.DeleteAsync({TUser},System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserStore{{TUser}}.FindByIdAsync(System.String,System.Threading.CancellationToken)
- Microsoft.AspNet.Identity.IUserStore{{TUser}}.FindByNameAsync(System.String,System.Threading.CancellationToken)
- System.IDisposable.Dispose
- uid: Microsoft.AspNet.Identity.IUserClaimStore`1.GetClaimsAsync(`0,System.Threading.CancellationToken)
id: GetClaimsAsync(`0,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserClaimStore`1
href: Microsoft.AspNet.Identity.IUserClaimStore`1.yml
name: GetClaimsAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserClaimStore<TUser>.GetClaimsAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserClaimStore(Of TUser).GetClaimsAsync(TUser, System.Threading.CancellationToken)
type: Method
source:
remote: *o0
path: src/Microsoft.AspNet.Identity/IUserClaimStore.cs
startLine: 24
assemblies:
- Microsoft.AspNet.Identity
namespace: Microsoft.AspNet.Identity
summary: >-
Gets a list of
<see cref="T:System.Security.Claims.Claim" />s to be belonging to the specified
<paramref name="user" /> as an asynchronous operation.
syntax:
content: Task<IList<Claim>> GetClaimsAsync(TUser user, CancellationToken cancellationToken)
content.vb: Function GetClaimsAsync(user As TUser, cancellationToken As CancellationToken) As Task(Of IList(Of Claim))
parameters:
- id: user
type: '{TUser}'
description: The role whose claims to retrieve.
- id: cancellationToken
type: System.Threading.CancellationToken
description: >-
The
<see cref="T:System.Threading.CancellationToken" /> used to propagate notifications that the operation should be canceled.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.IList{System.Security.Claims.Claim}}
description: >-
A
<see cref="T:System.Threading.Tasks.Task`1" /> that represents the result of the asynchronous query, a list of
<see cref="T:System.Security.Claims.Claim" />s.
- uid: Microsoft.AspNet.Identity.IUserClaimStore`1.AddClaimsAsync(`0,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)
id: AddClaimsAsync(`0,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserClaimStore`1
href: Microsoft.AspNet.Identity.IUserClaimStore`1.yml
name: AddClaimsAsync(TUser, IEnumerable<Claim>, CancellationToken)
name.vb: AddClaimsAsync(TUser, IEnumerable(Of Claim), CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserClaimStore<TUser>.AddClaimsAsync(TUser, System.Collections.Generic.IEnumerable<System.Security.Claims.Claim>, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserClaimStore(Of TUser).AddClaimsAsync(TUser, System.Collections.Generic.IEnumerable(Of System.Security.Claims.Claim), System.Threading.CancellationToken)
type: Method
source:
remote: *o0
path: src/Microsoft.AspNet.Identity/IUserClaimStore.cs
startLine: 33
assemblies:
- Microsoft.AspNet.Identity
namespace: Microsoft.AspNet.Identity
summary: Add claims to a user as an asynchronous operation.
syntax:
content: Task AddClaimsAsync(TUser user, IEnumerable<Claim> claims, CancellationToken cancellationToken)
content.vb: Function AddClaimsAsync(user As TUser, claims As IEnumerable(Of Claim), cancellationToken As CancellationToken) As Task
parameters:
- id: user
type: '{TUser}'
description: The user to add the claim to.
- id: claims
type: System.Collections.Generic.IEnumerable{System.Security.Claims.Claim}
description: >-
The collection of
<see cref="T:System.Security.Claims.Claim" />s to add.
- id: cancellationToken
type: System.Threading.CancellationToken
description: >-
The
<see cref="T:System.Threading.CancellationToken" /> used to propagate notifications that the operation should be canceled.
return:
type: System.Threading.Tasks.Task
description: The task object representing the asynchronous operation.
- uid: Microsoft.AspNet.Identity.IUserClaimStore`1.ReplaceClaimAsync(`0,System.Security.Claims.Claim,System.Security.Claims.Claim,System.Threading.CancellationToken)
id: ReplaceClaimAsync(`0,System.Security.Claims.Claim,System.Security.Claims.Claim,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserClaimStore`1
href: Microsoft.AspNet.Identity.IUserClaimStore`1.yml
name: ReplaceClaimAsync(TUser, Claim, Claim, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserClaimStore<TUser>.ReplaceClaimAsync(TUser, System.Security.Claims.Claim, System.Security.Claims.Claim, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserClaimStore(Of TUser).ReplaceClaimAsync(TUser, System.Security.Claims.Claim, System.Security.Claims.Claim, System.Threading.CancellationToken)
type: Method
source:
remote: *o0
path: src/Microsoft.AspNet.Identity/IUserClaimStore.cs
startLine: 43
assemblies:
- Microsoft.AspNet.Identity
namespace: Microsoft.AspNet.Identity
summary: >-
Replaces the given
<paramref name="claim" /> on the specified
<paramref name="user" /> with the
<paramref name="newClaim" />
syntax:
content: Task ReplaceClaimAsync(TUser user, Claim claim, Claim newClaim, CancellationToken cancellationToken)
content.vb: Function ReplaceClaimAsync(user As TUser, claim As Claim, newClaim As Claim, cancellationToken As CancellationToken) As Task
parameters:
- id: user
type: '{TUser}'
description: The user to replace the claim on.
- id: claim
type: System.Security.Claims.Claim
description: The claim to replace.
- id: newClaim
type: System.Security.Claims.Claim
description: >-
The new claim to replace the existing
<paramref name="claim" /> with.
- id: cancellationToken
type: System.Threading.CancellationToken
description: >-
The
<see cref="T:System.Threading.CancellationToken" /> used to propagate notifications that the operation should be canceled.
return:
type: System.Threading.Tasks.Task
description: The task object representing the asynchronous operation.
- uid: Microsoft.AspNet.Identity.IUserClaimStore`1.RemoveClaimsAsync(`0,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)
id: RemoveClaimsAsync(`0,System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserClaimStore`1
href: Microsoft.AspNet.Identity.IUserClaimStore`1.yml
name: RemoveClaimsAsync(TUser, IEnumerable<Claim>, CancellationToken)
name.vb: RemoveClaimsAsync(TUser, IEnumerable(Of Claim), CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserClaimStore<TUser>.RemoveClaimsAsync(TUser, System.Collections.Generic.IEnumerable<System.Security.Claims.Claim>, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserClaimStore(Of TUser).RemoveClaimsAsync(TUser, System.Collections.Generic.IEnumerable(Of System.Security.Claims.Claim), System.Threading.CancellationToken)
type: Method
source:
remote: *o0
path: src/Microsoft.AspNet.Identity/IUserClaimStore.cs
startLine: 52
assemblies:
- Microsoft.AspNet.Identity
namespace: Microsoft.AspNet.Identity
summary: >-
Removes the specified
<paramref name="claims" /> from the given
<paramref name="user" />.
syntax:
content: Task RemoveClaimsAsync(TUser user, IEnumerable<Claim> claims, CancellationToken cancellationToken)
content.vb: Function RemoveClaimsAsync(user As TUser, claims As IEnumerable(Of Claim), cancellationToken As CancellationToken) As Task
parameters:
- id: user
type: '{TUser}'
description: >-
The user to remove the specified
<paramref name="claims" /> from.
- id: claims
type: System.Collections.Generic.IEnumerable{System.Security.Claims.Claim}
description: >-
A collection of
<see cref="T:System.Security.Claims.Claim" />s to remove.
- id: cancellationToken
type: System.Threading.CancellationToken
description: >-
The
<see cref="T:System.Threading.CancellationToken" /> used to propagate notifications that the operation should be canceled.
return:
type: System.Threading.Tasks.Task
description: The task object representing the asynchronous operation.
- uid: Microsoft.AspNet.Identity.IUserClaimStore`1.GetUsersForClaimAsync(System.Security.Claims.Claim,System.Threading.CancellationToken)
id: GetUsersForClaimAsync(System.Security.Claims.Claim,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserClaimStore`1
href: Microsoft.AspNet.Identity.IUserClaimStore`1.yml
name: GetUsersForClaimAsync(Claim, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserClaimStore<TUser>.GetUsersForClaimAsync(System.Security.Claims.Claim, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserClaimStore(Of TUser).GetUsersForClaimAsync(System.Security.Claims.Claim, System.Threading.CancellationToken)
type: Method
source:
remote: *o0
path: src/Microsoft.AspNet.Identity/IUserClaimStore.cs
startLine: 63
assemblies:
- Microsoft.AspNet.Identity
namespace: Microsoft.AspNet.Identity
summary: >-
Returns a list of users who contain the specified
<see cref="T:System.Security.Claims.Claim" />.
syntax:
content: Task<IList<TUser>> GetUsersForClaimAsync(Claim claim, CancellationToken cancellationToken)
content.vb: Function GetUsersForClaimAsync(claim As Claim, cancellationToken As CancellationToken) As Task(Of IList(Of TUser))
parameters:
- id: claim
type: System.Security.Claims.Claim
description: The claim to look for.
- id: cancellationToken
type: System.Threading.CancellationToken
description: >-
The
<see cref="T:System.Threading.CancellationToken" /> used to propagate notifications that the operation should be canceled.
return:
type: System.Threading.Tasks.Task{System.Collections.Generic.IList{{TUser}}}
description: >-
A
<see cref="T:System.Threading.Tasks.Task`1" /> that represents the result of the asynchronous query, a list of
<typeparamref name="TUser" /> who
contain the specified claim.
references:
- uid: Microsoft.AspNet.Identity
isExternal: false
name: Microsoft.AspNet.Identity
fullName: Microsoft.AspNet.Identity
type: Namespace
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}.GetUserIdAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore{{TUser}}
definition: Microsoft.AspNet.Identity.IUserStore`1.GetUserIdAsync({TUser},System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: GetUserIdAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetUserIdAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetUserIdAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetUserIdAsync(`0,System.Threading.CancellationToken)
name: GetUserIdAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetUserIdAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetUserIdAsync(`0,System.Threading.CancellationToken)
name: GetUserIdAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetUserIdAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}.GetUserNameAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore{{TUser}}
definition: Microsoft.AspNet.Identity.IUserStore`1.GetUserNameAsync({TUser},System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: GetUserNameAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetUserNameAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetUserNameAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetUserNameAsync(`0,System.Threading.CancellationToken)
name: GetUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetUserNameAsync(`0,System.Threading.CancellationToken)
name: GetUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}.SetUserNameAsync({TUser},System.String,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore{{TUser}}
definition: Microsoft.AspNet.Identity.IUserStore`1.SetUserNameAsync({TUser},System.String,System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: SetUserNameAsync(TUser, String, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.SetUserNameAsync(TUser, System.String, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).SetUserNameAsync(TUser, System.String, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.SetUserNameAsync(`0,System.String,System.Threading.CancellationToken)
name: SetUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.SetUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.SetUserNameAsync(`0,System.String,System.Threading.CancellationToken)
name: SetUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).SetUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}.GetNormalizedUserNameAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore{{TUser}}
definition: Microsoft.AspNet.Identity.IUserStore`1.GetNormalizedUserNameAsync({TUser},System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: GetNormalizedUserNameAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetNormalizedUserNameAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetNormalizedUserNameAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetNormalizedUserNameAsync(`0,System.Threading.CancellationToken)
name: GetNormalizedUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetNormalizedUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetNormalizedUserNameAsync(`0,System.Threading.CancellationToken)
name: GetNormalizedUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetNormalizedUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}.SetNormalizedUserNameAsync({TUser},System.String,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore{{TUser}}
definition: Microsoft.AspNet.Identity.IUserStore`1.SetNormalizedUserNameAsync({TUser},System.String,System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: SetNormalizedUserNameAsync(TUser, String, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.SetNormalizedUserNameAsync(TUser, System.String, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).SetNormalizedUserNameAsync(TUser, System.String, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.SetNormalizedUserNameAsync(`0,System.String,System.Threading.CancellationToken)
name: SetNormalizedUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.SetNormalizedUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.SetNormalizedUserNameAsync(`0,System.String,System.Threading.CancellationToken)
name: SetNormalizedUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).SetNormalizedUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}.CreateAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore{{TUser}}
definition: Microsoft.AspNet.Identity.IUserStore`1.CreateAsync({TUser},System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: CreateAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.CreateAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).CreateAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.CreateAsync(`0,System.Threading.CancellationToken)
name: CreateAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.CreateAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.CreateAsync(`0,System.Threading.CancellationToken)
name: CreateAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).CreateAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}.UpdateAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore{{TUser}}
definition: Microsoft.AspNet.Identity.IUserStore`1.UpdateAsync({TUser},System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: UpdateAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.UpdateAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).UpdateAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.UpdateAsync(`0,System.Threading.CancellationToken)
name: UpdateAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.UpdateAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.UpdateAsync(`0,System.Threading.CancellationToken)
name: UpdateAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).UpdateAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}.DeleteAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore{{TUser}}
definition: Microsoft.AspNet.Identity.IUserStore`1.DeleteAsync({TUser},System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: DeleteAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.DeleteAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).DeleteAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.DeleteAsync(`0,System.Threading.CancellationToken)
name: DeleteAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.DeleteAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.DeleteAsync(`0,System.Threading.CancellationToken)
name: DeleteAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).DeleteAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}.FindByIdAsync(System.String,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore{{TUser}}
definition: Microsoft.AspNet.Identity.IUserStore`1.FindByIdAsync(System.String,System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: FindByIdAsync(String, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.FindByIdAsync(System.String, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).FindByIdAsync(System.String, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.FindByIdAsync(System.String,System.Threading.CancellationToken)
name: FindByIdAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.FindByIdAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.FindByIdAsync(System.String,System.Threading.CancellationToken)
name: FindByIdAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).FindByIdAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}.FindByNameAsync(System.String,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore{{TUser}}
definition: Microsoft.AspNet.Identity.IUserStore`1.FindByNameAsync(System.String,System.Threading.CancellationToken)
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: FindByNameAsync(String, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.FindByNameAsync(System.String, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).FindByNameAsync(System.String, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.FindByNameAsync(System.String,System.Threading.CancellationToken)
name: FindByNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.FindByNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.FindByNameAsync(System.String,System.Threading.CancellationToken)
name: FindByNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).FindByNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: System.IDisposable.Dispose
parent: System.IDisposable
isExternal: true
name: Dispose()
fullName: System.IDisposable.Dispose()
spec.csharp:
- uid: System.IDisposable.Dispose
name: Dispose
fullName: System.IDisposable.Dispose
isExternal: true
- name: (
fullName: (
- name: )
fullName: )
spec.vb:
- uid: System.IDisposable.Dispose
name: Dispose
fullName: System.IDisposable.Dispose
isExternal: true
- name: (
fullName: (
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetUserIdAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore`1
isExternal: true
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: GetUserIdAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetUserIdAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetUserIdAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetUserIdAsync(`0,System.Threading.CancellationToken)
name: GetUserIdAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetUserIdAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetUserIdAsync(`0,System.Threading.CancellationToken)
name: GetUserIdAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetUserIdAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore{{TUser}}
parent: Microsoft.AspNet.Identity
definition: Microsoft.AspNet.Identity.IUserStore`1
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: IUserStore<TUser>
name.vb: IUserStore(Of TUser)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1
name: IUserStore
fullName: Microsoft.AspNet.Identity.IUserStore
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: <
fullName: <
- name: TUser
fullName: TUser
- name: '>'
fullName: '>'
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1
name: IUserStore
fullName: Microsoft.AspNet.Identity.IUserStore
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: '(Of '
fullName: '(Of '
- name: TUser
fullName: TUser
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetUserNameAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore`1
isExternal: true
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: GetUserNameAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetUserNameAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetUserNameAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetUserNameAsync(`0,System.Threading.CancellationToken)
name: GetUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetUserNameAsync(`0,System.Threading.CancellationToken)
name: GetUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore`1.SetUserNameAsync({TUser},System.String,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore`1
isExternal: true
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: SetUserNameAsync(TUser, String, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.SetUserNameAsync(TUser, System.String, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).SetUserNameAsync(TUser, System.String, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.SetUserNameAsync(`0,System.String,System.Threading.CancellationToken)
name: SetUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.SetUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.SetUserNameAsync(`0,System.String,System.Threading.CancellationToken)
name: SetUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).SetUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetNormalizedUserNameAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore`1
isExternal: true
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: GetNormalizedUserNameAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetNormalizedUserNameAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetNormalizedUserNameAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetNormalizedUserNameAsync(`0,System.Threading.CancellationToken)
name: GetNormalizedUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.GetNormalizedUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.GetNormalizedUserNameAsync(`0,System.Threading.CancellationToken)
name: GetNormalizedUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).GetNormalizedUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore`1.SetNormalizedUserNameAsync({TUser},System.String,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore`1
isExternal: true
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: SetNormalizedUserNameAsync(TUser, String, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.SetNormalizedUserNameAsync(TUser, System.String, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).SetNormalizedUserNameAsync(TUser, System.String, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.SetNormalizedUserNameAsync(`0,System.String,System.Threading.CancellationToken)
name: SetNormalizedUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.SetNormalizedUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.SetNormalizedUserNameAsync(`0,System.String,System.Threading.CancellationToken)
name: SetNormalizedUserNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).SetNormalizedUserNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore`1.CreateAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore`1
isExternal: true
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: CreateAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.CreateAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).CreateAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.CreateAsync(`0,System.Threading.CancellationToken)
name: CreateAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.CreateAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.CreateAsync(`0,System.Threading.CancellationToken)
name: CreateAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).CreateAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore`1.UpdateAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore`1
isExternal: true
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: UpdateAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.UpdateAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).UpdateAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.UpdateAsync(`0,System.Threading.CancellationToken)
name: UpdateAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.UpdateAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.UpdateAsync(`0,System.Threading.CancellationToken)
name: UpdateAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).UpdateAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore`1.DeleteAsync({TUser},System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore`1
isExternal: true
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: DeleteAsync(TUser, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.DeleteAsync(TUser, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).DeleteAsync(TUser, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.DeleteAsync(`0,System.Threading.CancellationToken)
name: DeleteAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.DeleteAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.DeleteAsync(`0,System.Threading.CancellationToken)
name: DeleteAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).DeleteAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- name: TUser
fullName: TUser
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore`1.FindByIdAsync(System.String,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore`1
isExternal: true
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: FindByIdAsync(String, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.FindByIdAsync(System.String, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).FindByIdAsync(System.String, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.FindByIdAsync(System.String,System.Threading.CancellationToken)
name: FindByIdAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.FindByIdAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.FindByIdAsync(System.String,System.Threading.CancellationToken)
name: FindByIdAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).FindByIdAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: Microsoft.AspNet.Identity.IUserStore`1.FindByNameAsync(System.String,System.Threading.CancellationToken)
parent: Microsoft.AspNet.Identity.IUserStore`1
isExternal: true
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: FindByNameAsync(String, CancellationToken)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.FindByNameAsync(System.String, System.Threading.CancellationToken)
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser).FindByNameAsync(System.String, System.Threading.CancellationToken)
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1.FindByNameAsync(System.String,System.Threading.CancellationToken)
name: FindByNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>.FindByNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1.FindByNameAsync(System.String,System.Threading.CancellationToken)
name: FindByNameAsync
fullName: Microsoft.AspNet.Identity.IUserStore(Of TUser).FindByNameAsync
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: (
fullName: (
- uid: System.String
name: String
fullName: System.String
isExternal: true
- name: ', '
fullName: ', '
- uid: System.Threading.CancellationToken
name: CancellationToken
fullName: System.Threading.CancellationToken
isExternal: true
- name: )
fullName: )
- uid: System.IDisposable
parent: System
isExternal: true
name: IDisposable
fullName: System.IDisposable
- uid: Microsoft.AspNet.Identity.IUserStore`1
parent: Microsoft.AspNet.Identity
isExternal: false
href: Microsoft.AspNet.Identity.IUserStore`1.yml
name: IUserStore<TUser>
name.vb: IUserStore(Of TUser)
fullName: Microsoft.AspNet.Identity.IUserStore<TUser>
fullName.vb: Microsoft.AspNet.Identity.IUserStore(Of TUser)
type: Interface
summary: Provides an abstraction for a store which manages user accounts.
spec.csharp:
- uid: Microsoft.AspNet.Identity.IUserStore`1
name: IUserStore
fullName: Microsoft.AspNet.Identity.IUserStore
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: <
fullName: <
- name: TUser
fullName: TUser
- name: '>'
fullName: '>'
spec.vb:
- uid: Microsoft.AspNet.Identity.IUserStore`1
name: IUserStore
fullName: Microsoft.AspNet.Identity.IUserStore
href: Microsoft.AspNet.Identity.IUserStore`1.yml
- name: '(Of '
fullName: '(Of '
- name: TUser
fullName: TUser
- name: )
fullName: )
- uid: System
isExternal: false
name: System
fullName: System
- uid: '{TUser}'
isExternal: false
name: TUser
fullName: TUser
- uid: System.Threading.CancellationToken
parent: System.Threading
isExternal: true
name: CancellationToken
fullName: System.Threading.CancellationToken
- uid: System.Threading.Tasks.Task{System.Collections.Generic.IList{System.Security.Claims.Claim}}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
name: Task<IList<Claim>>
name.vb: Task(Of IList(Of Claim))
fullName: System.Threading.Tasks.Task<System.Collections.Generic.IList<System.Security.Claims.Claim>>
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.IList(Of System.Security.Claims.Claim))
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
fullName: System.Threading.Tasks.Task
isExternal: true
- name: <
fullName: <
- uid: System.Collections.Generic.IList`1
name: IList
fullName: System.Collections.Generic.IList
isExternal: true
- name: <
fullName: <
- uid: System.Security.Claims.Claim
name: Claim
fullName: System.Security.Claims.Claim
isExternal: true
- name: '>'
fullName: '>'
- name: '>'
fullName: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
fullName: System.Threading.Tasks.Task
isExternal: true
- name: '(Of '
fullName: '(Of '
- uid: System.Collections.Generic.IList`1
name: IList
fullName: System.Collections.Generic.IList
isExternal: true
- name: '(Of '
fullName: '(Of '
- uid: System.Security.Claims.Claim
name: Claim
fullName: System.Security.Claims.Claim
isExternal: true
- name: )
fullName: )
- name: )
fullName: )
- uid: System.Threading
isExternal: false
name: System.Threading
fullName: System.Threading
- uid: System.Threading.Tasks.Task`1
parent: System.Threading.Tasks
isExternal: true
name: Task<TResult>
name.vb: Task(Of TResult)
fullName: System.Threading.Tasks.Task<TResult>
fullName.vb: System.Threading.Tasks.Task(Of TResult)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
fullName: System.Threading.Tasks.Task
isExternal: true
- name: <
fullName: <
- name: TResult
fullName: TResult
- name: '>'
fullName: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
fullName: System.Threading.Tasks.Task
isExternal: true
- name: '(Of '
fullName: '(Of '
- name: TResult
fullName: TResult
- name: )
fullName: )
- uid: System.Threading.Tasks
isExternal: false
name: System.Threading.Tasks
fullName: System.Threading.Tasks
- uid: System.Collections.Generic.IEnumerable{System.Security.Claims.Claim}
parent: System.Collections.Generic
definition: System.Collections.Generic.IEnumerable`1
name: IEnumerable<Claim>
name.vb: IEnumerable(Of Claim)
fullName: System.Collections.Generic.IEnumerable<System.Security.Claims.Claim>
fullName.vb: System.Collections.Generic.IEnumerable(Of System.Security.Claims.Claim)
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
fullName: System.Collections.Generic.IEnumerable
isExternal: true
- name: <
fullName: <
- uid: System.Security.Claims.Claim
name: Claim
fullName: System.Security.Claims.Claim
isExternal: true
- name: '>'
fullName: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
fullName: System.Collections.Generic.IEnumerable
isExternal: true
- name: '(Of '
fullName: '(Of '
- uid: System.Security.Claims.Claim
name: Claim
fullName: System.Security.Claims.Claim
isExternal: true
- name: )
fullName: )
- uid: System.Threading.Tasks.Task
parent: System.Threading.Tasks
isExternal: true
name: Task
fullName: System.Threading.Tasks.Task
- uid: System.Collections.Generic.IEnumerable`1
parent: System.Collections.Generic
isExternal: true
name: IEnumerable<T>
name.vb: IEnumerable(Of T)
fullName: System.Collections.Generic.IEnumerable<T>
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
fullName: System.Collections.Generic.IEnumerable
isExternal: true
- name: <
fullName: <
- name: T
fullName: T
- name: '>'
fullName: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
fullName: System.Collections.Generic.IEnumerable
isExternal: true
- name: '(Of '
fullName: '(Of '
- name: T
fullName: T
- name: )
fullName: )
- uid: System.Collections.Generic
isExternal: false
name: System.Collections.Generic
fullName: System.Collections.Generic
- uid: System.Security.Claims.Claim
parent: System.Security.Claims
isExternal: true
name: Claim
fullName: System.Security.Claims.Claim
- uid: System.Security.Claims
isExternal: false
name: System.Security.Claims
fullName: System.Security.Claims
type: Namespace
- uid: System.Threading.Tasks.Task{System.Collections.Generic.IList{{TUser}}}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
name: Task<IList<TUser>>
name.vb: Task(Of IList(Of TUser))
fullName: System.Threading.Tasks.Task<System.Collections.Generic.IList<TUser>>
fullName.vb: System.Threading.Tasks.Task(Of System.Collections.Generic.IList(Of TUser))
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
fullName: System.Threading.Tasks.Task
isExternal: true
- name: <
fullName: <
- uid: System.Collections.Generic.IList`1
name: IList
fullName: System.Collections.Generic.IList
isExternal: true
- name: <
fullName: <
- name: TUser
fullName: TUser
- name: '>'
fullName: '>'
- name: '>'
fullName: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
fullName: System.Threading.Tasks.Task
isExternal: true
- name: '(Of '
fullName: '(Of '
- uid: System.Collections.Generic.IList`1
name: IList
fullName: System.Collections.Generic.IList
isExternal: true
- name: '(Of '
fullName: '(Of '
- name: TUser
fullName: TUser
- name: )
fullName: )
- name: )
fullName: )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment