Early Preview
This is currently very much a preview. Please feel free to try things out,
but don't be upset if anything is not yet working. Feedback is welcome over on our
GitHub Dicussions page.
interface Duende.​IdentityServer.​Stores.​IDeviceFlowStore
Assembly: Duende.IdentityServer.Storage
Interface for the device flow store
Methods
StoreDeviceAuthorizationAsync​(string deviceCode,
string userCode,
Models.​DeviceCode data)
Stores the device authorization request.
deviceCode
The device code.
userCode
The user code.
data
The data.
System.​Threading.​Tasks.​Task<​Models.​DeviceCode>
FindByUserCodeAsync​(string userCode)
Finds device authorization by user code.
userCode
The user code.
System.​Threading.​Tasks.​Task<​Models.​DeviceCode>
FindByDeviceCodeAsync​(string deviceCode)
Finds device authorization by device code.
deviceCode
The device code.
UpdateByUserCodeAsync​(string userCode,
Models.​DeviceCode data)
Updates device authorization, searching by user code.
userCode
The user code.
data
The data.
RemoveByDeviceCodeAsync​(string deviceCode)
Removes the device authorization, searching by device code.
deviceCode
The device code.