openiddict-documentation/api/OpenIddict.Abstractions.IOpenIddictApplicationStore-1.html
2021-02-08 10:58:19 +00:00

2128 lines
87 KiB
HTML

<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Interface IOpenIddictApplicationStore&lt;TApplication&gt;
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Interface IOpenIddictApplicationStore&lt;TApplication&gt;
">
<meta name="generator" content="docfx 2.56.6.0">
<link rel="shortcut icon" href="../images/favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
</head> <body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../images/logo.png" alt="">
</a> </div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1">
<h1 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1" class="text-break">Interface IOpenIddictApplicationStore&lt;TApplication&gt;
</h1>
<div class="markdown level0 summary"><p>Provides methods allowing to manage the applications stored in a database.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="OpenIddict.Abstractions.html">OpenIddict.Abstractions</a></h6>
<h6><strong>Assembly</strong>: cs.temp.dll.dll</h6>
<h5 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public interface IOpenIddictApplicationStore&lt;TApplication&gt;
where TApplication : class</code></pre>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TApplication</span></td>
<td><p>The type of the Application entity.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_CountAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.CountAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_CountAsync_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.CountAsync(CancellationToken)">CountAsync(CancellationToken)</h4>
<div class="markdown level1 summary"><p>Determines the number of applications that exist in the database.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;long&gt; CountAsync(CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">System.Int64</span>&gt;</td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation,
whose result returns the number of applications in the database.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_CountAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.CountAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_CountAsync__1_Func_IQueryable__0__IQueryable___0___CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.CountAsync``1(Func{IQueryable{`0},IQueryable{``0}},CancellationToken)">CountAsync&lt;TResult&gt;(Func&lt;IQueryable&lt;TApplication&gt;, IQueryable&lt;TResult&gt;&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Determines the number of applications that match the specified query.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;long&gt; CountAsync&lt;TResult&gt;(Func&lt;IQueryable&lt;TApplication&gt;, IQueryable&lt;TResult&gt;&gt; query, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Func</span>&lt;<span class="xref">IQueryable</span>&lt;TApplication&gt;, <span class="xref">IQueryable</span>&lt;TResult&gt;&gt;</td>
<td><span class="parametername">query</span></td>
<td><p>The query to execute.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">System.Int64</span>&gt;</td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation,
whose result returns the number of applications that match the specified query.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The result type.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_CreateAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.CreateAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_CreateAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.CreateAsync(`0,CancellationToken)">CreateAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Creates a new application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask CreateAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application to create.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_DeleteAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.DeleteAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_DeleteAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.DeleteAsync(`0,CancellationToken)">DeleteAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Removes an existing application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask DeleteAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application to delete.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_FindByClientIdAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.FindByClientIdAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_FindByClientIdAsync_System_String_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.FindByClientIdAsync(System.String,CancellationToken)">FindByClientIdAsync(String, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves an application using its client identifier.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;TApplication&gt; FindByClientIdAsync(string identifier, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">identifier</span></td>
<td><p>The client identifier associated with the application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;TApplication&gt;</td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation,
whose result returns the client application corresponding to the identifier.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_FindByIdAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.FindByIdAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_FindByIdAsync_System_String_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.FindByIdAsync(System.String,CancellationToken)">FindByIdAsync(String, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves an application using its unique identifier.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;TApplication&gt; FindByIdAsync(string identifier, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">identifier</span></td>
<td><p>The unique identifier associated with the application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;TApplication&gt;</td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation,
whose result returns the client application corresponding to the identifier.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_FindByPostLogoutRedirectUriAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.FindByPostLogoutRedirectUriAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_FindByPostLogoutRedirectUriAsync_System_String_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.FindByPostLogoutRedirectUriAsync(System.String,CancellationToken)">FindByPostLogoutRedirectUriAsync(String, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves all the applications associated with the specified post_logout_redirect_uri.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IAsyncEnumerable&lt;TApplication&gt; FindByPostLogoutRedirectUriAsync(string address, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">address</span></td>
<td><p>The post_logout_redirect_uri associated with the applications.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">IAsyncEnumerable</span>&lt;TApplication&gt;</td>
<td><p>The client applications corresponding to the specified post_logout_redirect_uri.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_FindByRedirectUriAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.FindByRedirectUriAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_FindByRedirectUriAsync_System_String_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.FindByRedirectUriAsync(System.String,CancellationToken)">FindByRedirectUriAsync(String, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves all the applications associated with the specified redirect_uri.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IAsyncEnumerable&lt;TApplication&gt; FindByRedirectUriAsync(string address, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">address</span></td>
<td><p>The redirect_uri associated with the applications.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">IAsyncEnumerable</span>&lt;TApplication&gt;</td>
<td><p>The client applications corresponding to the specified redirect_uri.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetAsync__2_Func_IQueryable__0____0_IQueryable___1_____0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetAsync``2(Func{IQueryable{`0},``0,IQueryable{``1}},``0,CancellationToken)">GetAsync&lt;TState, TResult&gt;(Func&lt;IQueryable&lt;TApplication&gt;, TState, IQueryable&lt;TResult&gt;&gt;, TState, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Executes the specified query and returns the first element.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;TResult&gt; GetAsync&lt;TState, TResult&gt;(Func&lt;IQueryable&lt;TApplication&gt;, TState, IQueryable&lt;TResult&gt;&gt; query, TState state, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Func</span>&lt;<span class="xref">IQueryable</span>&lt;TApplication&gt;, TState, <span class="xref">IQueryable</span>&lt;TResult&gt;&gt;</td>
<td><span class="parametername">query</span></td>
<td><p>The query to execute.</p>
</td>
</tr>
<tr>
<td><span class="xref">TState</span></td>
<td><span class="parametername">state</span></td>
<td><p>The optional state.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;TResult&gt;</td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation,
whose result returns the first element returned when executing the query.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TState</span></td>
<td><p>The state type.</p>
</td>
</tr>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The result type.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetClientIdAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetClientIdAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetClientIdAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetClientIdAsync(`0,CancellationToken)">GetClientIdAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the client identifier associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;string&gt; GetClientIdAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns the client identifier associated with the application.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetClientSecretAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetClientSecretAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetClientSecretAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetClientSecretAsync(`0,CancellationToken)">GetClientSecretAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the client secret associated with an application.
Note: depending on the manager used to create the application,
the client secret may be hashed for security reasons.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;string&gt; GetClientSecretAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns the client secret associated with the application.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetClientTypeAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetClientTypeAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetClientTypeAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetClientTypeAsync(`0,CancellationToken)">GetClientTypeAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the client type associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;string&gt; GetClientTypeAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns the client type of the application (by default, &quot;public&quot;).</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetConsentTypeAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetConsentTypeAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetConsentTypeAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetConsentTypeAsync(`0,CancellationToken)">GetConsentTypeAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the consent type associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;string&gt; GetConsentTypeAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns the consent type of the application (by default, &quot;explicit&quot;).</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetDisplayNameAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetDisplayNameAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetDisplayNameAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetDisplayNameAsync(`0,CancellationToken)">GetDisplayNameAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the display name associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;string&gt; GetDisplayNameAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns the display name associated with the application.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetDisplayNamesAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetDisplayNamesAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetDisplayNamesAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetDisplayNamesAsync(`0,CancellationToken)">GetDisplayNamesAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the localized display names associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;ImmutableDictionary&lt;CultureInfo, string&gt;&gt; GetDisplayNamesAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">ImmutableDictionary</span>&lt;<span class="xref">CultureInfo</span>, <span class="xref">System.String</span>&gt;&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns all the localized display names associated with the application.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetIdAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetIdAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetIdAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetIdAsync(`0,CancellationToken)">GetIdAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the unique identifier associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;string&gt; GetIdAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns the unique identifier associated with the application.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetPermissionsAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetPermissionsAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetPermissionsAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetPermissionsAsync(`0,CancellationToken)">GetPermissionsAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the permissions associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;ImmutableArray&lt;string&gt;&gt; GetPermissionsAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">ImmutableArray</span>&lt;<span class="xref">System.String</span>&gt;&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns all the permissions associated with the application.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetPostLogoutRedirectUrisAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetPostLogoutRedirectUrisAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetPostLogoutRedirectUrisAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetPostLogoutRedirectUrisAsync(`0,CancellationToken)">GetPostLogoutRedirectUrisAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the logout callback addresses associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;ImmutableArray&lt;string&gt;&gt; GetPostLogoutRedirectUrisAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">ImmutableArray</span>&lt;<span class="xref">System.String</span>&gt;&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns all the post_logout_redirect_uri associated with the application.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetPropertiesAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetPropertiesAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetPropertiesAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetPropertiesAsync(`0,CancellationToken)">GetPropertiesAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the additional properties associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;ImmutableDictionary&lt;string, JsonElement&gt;&gt; GetPropertiesAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">ImmutableDictionary</span>&lt;<span class="xref">System.String</span>, <span class="xref">JsonElement</span>&gt;&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns all the additional properties associated with the application.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetRedirectUrisAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetRedirectUrisAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetRedirectUrisAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetRedirectUrisAsync(`0,CancellationToken)">GetRedirectUrisAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the callback addresses associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;ImmutableArray&lt;string&gt;&gt; GetRedirectUrisAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">ImmutableArray</span>&lt;<span class="xref">System.String</span>&gt;&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns all the redirect_uri associated with the application.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetRequirementsAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetRequirementsAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_GetRequirementsAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.GetRequirementsAsync(`0,CancellationToken)">GetRequirementsAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Retrieves the requirements associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;ImmutableArray&lt;string&gt;&gt; GetRequirementsAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;<span class="xref">ImmutableArray</span>&lt;<span class="xref">System.String</span>&gt;&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns all the requirements associated with the application.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_InstantiateAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.InstantiateAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_InstantiateAsync_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.InstantiateAsync(CancellationToken)">InstantiateAsync(CancellationToken)</h4>
<div class="markdown level1 summary"><p>Instantiates a new application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask&lt;TApplication&gt; InstantiateAsync(CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span>&lt;TApplication&gt;</td>
<td><p>A <see cref="!:ValueTask&lt;TResult>"></see> that can be used to monitor the asynchronous operation,
whose result returns the instantiated application, that can be persisted in the database.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_ListAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.ListAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_ListAsync_System_Nullable_System_Int32__System_Nullable_System_Int32__CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.ListAsync(System.Nullable{System.Int32},System.Nullable{System.Int32},CancellationToken)">ListAsync(Nullable&lt;Int32&gt;, Nullable&lt;Int32&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Executes the specified query and returns all the corresponding elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IAsyncEnumerable&lt;TApplication&gt; ListAsync(int? count, int? offset, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Nullable</span>&lt;<span class="xref">System.Int32</span>&gt;</td>
<td><span class="parametername">count</span></td>
<td><p>The number of results to return.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Nullable</span>&lt;<span class="xref">System.Int32</span>&gt;</td>
<td><span class="parametername">offset</span></td>
<td><p>The number of results to skip.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">IAsyncEnumerable</span>&lt;TApplication&gt;</td>
<td><p>All the elements returned when executing the specified query.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_ListAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.ListAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_ListAsync__2_Func_IQueryable__0____0_IQueryable___1_____0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.ListAsync``2(Func{IQueryable{`0},``0,IQueryable{``1}},``0,CancellationToken)">ListAsync&lt;TState, TResult&gt;(Func&lt;IQueryable&lt;TApplication&gt;, TState, IQueryable&lt;TResult&gt;&gt;, TState, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Executes the specified query and returns all the corresponding elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IAsyncEnumerable&lt;TResult&gt; ListAsync&lt;TState, TResult&gt;(Func&lt;IQueryable&lt;TApplication&gt;, TState, IQueryable&lt;TResult&gt;&gt; query, TState state, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Func</span>&lt;<span class="xref">IQueryable</span>&lt;TApplication&gt;, TState, <span class="xref">IQueryable</span>&lt;TResult&gt;&gt;</td>
<td><span class="parametername">query</span></td>
<td><p>The query to execute.</p>
</td>
</tr>
<tr>
<td><span class="xref">TState</span></td>
<td><span class="parametername">state</span></td>
<td><p>The optional state.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">IAsyncEnumerable</span>&lt;TResult&gt;</td>
<td><p>All the elements returned when executing the specified query.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TState</span></td>
<td><p>The state type.</p>
</td>
</tr>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The result type.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetClientIdAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetClientIdAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetClientIdAsync__0_System_String_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetClientIdAsync(`0,System.String,CancellationToken)">SetClientIdAsync(TApplication, String, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the client identifier associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetClientIdAsync(TApplication application, string identifier, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">identifier</span></td>
<td><p>The client identifier associated with the application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetClientSecretAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetClientSecretAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetClientSecretAsync__0_System_String_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetClientSecretAsync(`0,System.String,CancellationToken)">SetClientSecretAsync(TApplication, String, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the client secret associated with an application.
Note: depending on the manager used to create the application,
the client secret may be hashed for security reasons.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetClientSecretAsync(TApplication application, string secret, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">secret</span></td>
<td><p>The client secret associated with the application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetClientTypeAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetClientTypeAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetClientTypeAsync__0_System_String_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetClientTypeAsync(`0,System.String,CancellationToken)">SetClientTypeAsync(TApplication, String, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the client type associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetClientTypeAsync(TApplication application, string type, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">type</span></td>
<td><p>The client type associated with the application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetConsentTypeAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetConsentTypeAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetConsentTypeAsync__0_System_String_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetConsentTypeAsync(`0,System.String,CancellationToken)">SetConsentTypeAsync(TApplication, String, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the consent type associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetConsentTypeAsync(TApplication application, string type, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">type</span></td>
<td><p>The consent type associated with the application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetDisplayNameAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetDisplayNameAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetDisplayNameAsync__0_System_String_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetDisplayNameAsync(`0,System.String,CancellationToken)">SetDisplayNameAsync(TApplication, String, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the display name associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetDisplayNameAsync(TApplication application, string name, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">name</span></td>
<td><p>The display name associated with the application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetDisplayNamesAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetDisplayNamesAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetDisplayNamesAsync__0_ImmutableDictionary_CultureInfo_System_String__CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetDisplayNamesAsync(`0,ImmutableDictionary{CultureInfo,System.String},CancellationToken)">SetDisplayNamesAsync(TApplication, ImmutableDictionary&lt;CultureInfo, String&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the localized display names associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetDisplayNamesAsync(TApplication application, ImmutableDictionary&lt;CultureInfo, string&gt; names, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">ImmutableDictionary</span>&lt;<span class="xref">CultureInfo</span>, <span class="xref">System.String</span>&gt;</td>
<td><span class="parametername">names</span></td>
<td><p>The localized display names associated with the application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetPermissionsAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetPermissionsAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetPermissionsAsync__0_ImmutableArray_System_String__CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetPermissionsAsync(`0,ImmutableArray{System.String},CancellationToken)">SetPermissionsAsync(TApplication, ImmutableArray&lt;String&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the permissions associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetPermissionsAsync(TApplication application, ImmutableArray&lt;string&gt; permissions, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">ImmutableArray</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><span class="parametername">permissions</span></td>
<td><p>The permissions associated with the application </p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetPostLogoutRedirectUrisAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetPostLogoutRedirectUrisAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetPostLogoutRedirectUrisAsync__0_ImmutableArray_System_String__CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetPostLogoutRedirectUrisAsync(`0,ImmutableArray{System.String},CancellationToken)">SetPostLogoutRedirectUrisAsync(TApplication, ImmutableArray&lt;String&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the logout callback addresses associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetPostLogoutRedirectUrisAsync(TApplication application, ImmutableArray&lt;string&gt; addresses, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">ImmutableArray</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><span class="parametername">addresses</span></td>
<td><p>The logout callback addresses associated with the application </p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetPropertiesAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetPropertiesAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetPropertiesAsync__0_ImmutableDictionary_System_String_JsonElement__CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetPropertiesAsync(`0,ImmutableDictionary{System.String,JsonElement},CancellationToken)">SetPropertiesAsync(TApplication, ImmutableDictionary&lt;String, JsonElement&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the additional properties associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetPropertiesAsync(TApplication application, ImmutableDictionary&lt;string, JsonElement&gt; properties, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">ImmutableDictionary</span>&lt;<span class="xref">System.String</span>, <span class="xref">JsonElement</span>&gt;</td>
<td><span class="parametername">properties</span></td>
<td><p>The additional properties associated with the application.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetRedirectUrisAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetRedirectUrisAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetRedirectUrisAsync__0_ImmutableArray_System_String__CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetRedirectUrisAsync(`0,ImmutableArray{System.String},CancellationToken)">SetRedirectUrisAsync(TApplication, ImmutableArray&lt;String&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the callback addresses associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetRedirectUrisAsync(TApplication application, ImmutableArray&lt;string&gt; addresses, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">ImmutableArray</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><span class="parametername">addresses</span></td>
<td><p>The callback addresses associated with the application </p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetRequirementsAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetRequirementsAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_SetRequirementsAsync__0_ImmutableArray_System_String__CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.SetRequirementsAsync(`0,ImmutableArray{System.String},CancellationToken)">SetRequirementsAsync(TApplication, ImmutableArray&lt;String&gt;, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Sets the requirements associated with an application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask SetRequirementsAsync(TApplication application, ImmutableArray&lt;string&gt; requirements, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application.</p>
</td>
</tr>
<tr>
<td><span class="xref">ImmutableArray</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><span class="parametername">requirements</span></td>
<td><p>The requirements associated with the application </p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
<a id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_UpdateAsync_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.UpdateAsync*"></a>
<h4 id="OpenIddict_Abstractions_IOpenIddictApplicationStore_1_UpdateAsync__0_CancellationToken_" data-uid="OpenIddict.Abstractions.IOpenIddictApplicationStore`1.UpdateAsync(`0,CancellationToken)">UpdateAsync(TApplication, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Updates an existing application.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">ValueTask UpdateAsync(TApplication application, CancellationToken cancellationToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">TApplication</span></td>
<td><span class="parametername">application</span></td>
<td><p>The application to update.</p>
</td>
</tr>
<tr>
<td><span class="xref">CancellationToken</span></td>
<td><span class="parametername">cancellationToken</span></td>
<td><p>The <see cref="!:CancellationToken"></see> that can be used to abort the operation.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">ValueTask</span></td>
<td><p>A <see cref="!:ValueTask"></see> that can be used to monitor the asynchronous operation.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>