mirror of
https://github.com/Cysharp/UniTask.git
synced 2026-05-15 11:30:09 +00:00
deploy: 35a893ad9e
This commit is contained in:
@@ -377,6 +377,62 @@ For example: FooAction = UniTask.Action(async () => { /* */ })</p>
|
||||
<a class="xref" href="Cysharp.Threading.Tasks.UniTask.html#Cysharp_Threading_Tasks_UniTask_Run__1_System_Func_System_Object_Cysharp_Threading_Tasks_UniTask___0___System_Object_System_Boolean_CancellationToken_">Run<T>(Func<Object, UniTask<T>>, Object, Boolean, CancellationToken)</a>
|
||||
</td>
|
||||
<td class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a class="xref" href="Cysharp.Threading.Tasks.UniTask.html#Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_System_Action_System_Boolean_CancellationToken_">RunOnThreadPool(Action, Boolean, CancellationToken)</a>
|
||||
</td>
|
||||
<td class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a class="xref" href="Cysharp.Threading.Tasks.UniTask.html#Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_System_Action_System_Object__System_Object_System_Boolean_CancellationToken_">RunOnThreadPool(Action<Object>, Object, Boolean, CancellationToken)</a>
|
||||
</td>
|
||||
<td class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a class="xref" href="Cysharp.Threading.Tasks.UniTask.html#Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_System_Func_Cysharp_Threading_Tasks_UniTask__System_Boolean_CancellationToken_">RunOnThreadPool(Func<UniTask>, Boolean, CancellationToken)</a>
|
||||
</td>
|
||||
<td class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a class="xref" href="Cysharp.Threading.Tasks.UniTask.html#Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_System_Func_System_Object_Cysharp_Threading_Tasks_UniTask__System_Object_System_Boolean_CancellationToken_">RunOnThreadPool(Func<Object, UniTask>, Object, Boolean, CancellationToken)</a>
|
||||
</td>
|
||||
<td class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a class="xref" href="Cysharp.Threading.Tasks.UniTask.html#Cysharp_Threading_Tasks_UniTask_RunOnThreadPool__1_System_Func___0__System_Boolean_CancellationToken_">RunOnThreadPool<T>(Func<T>, Boolean, CancellationToken)</a>
|
||||
</td>
|
||||
<td class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a class="xref" href="Cysharp.Threading.Tasks.UniTask.html#Cysharp_Threading_Tasks_UniTask_RunOnThreadPool__1_System_Func_Cysharp_Threading_Tasks_UniTask___0___System_Boolean_CancellationToken_">RunOnThreadPool<T>(Func<UniTask<T>>, Boolean, CancellationToken)</a>
|
||||
</td>
|
||||
<td class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a class="xref" href="Cysharp.Threading.Tasks.UniTask.html#Cysharp_Threading_Tasks_UniTask_RunOnThreadPool__1_System_Func_System_Object___0__System_Object_System_Boolean_CancellationToken_">RunOnThreadPool<T>(Func<Object, T>, Object, Boolean, CancellationToken)</a>
|
||||
</td>
|
||||
<td class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a class="xref" href="Cysharp.Threading.Tasks.UniTask.html#Cysharp_Threading_Tasks_UniTask_RunOnThreadPool__1_System_Func_System_Object_Cysharp_Threading_Tasks_UniTask___0___System_Object_System_Boolean_CancellationToken_">RunOnThreadPool<T>(Func<Object, UniTask<T>>, Object, Boolean, CancellationToken)</a>
|
||||
</td>
|
||||
<td class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -2252,6 +2308,378 @@ For example: FooAction = UniTask.Action(async () => { /* */ })</p>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<a id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool*"></a>
|
||||
<h4 id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_System_Action_System_Boolean_CancellationToken_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool(System.Action,System.Boolean,CancellationToken)">RunOnThreadPool(Action, Boolean, CancellationToken)</h4>
|
||||
<div class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public static UniTask RunOnThreadPool(Action action, bool configureAwait = true, CancellationToken cancellationToken = null)</code></pre>
|
||||
</div>
|
||||
|
||||
<section>
|
||||
<h5 class="parameters">Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>action</code></span> <span class="xref">System.Action</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>configureAwait</code></span> <span class="xref">System.Boolean</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>cancellationToken</code></span> <span class="xref">CancellationToken</span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="returns">Returns</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><a class="xref" href="Cysharp.Threading.Tasks.UniTask.html">UniTask</a></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<a id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool*"></a>
|
||||
<h4 id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_System_Action_System_Object__System_Object_System_Boolean_CancellationToken_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool(System.Action{System.Object},System.Object,System.Boolean,CancellationToken)">RunOnThreadPool(Action<Object>, Object, Boolean, CancellationToken)</h4>
|
||||
<div class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public static UniTask RunOnThreadPool(Action<object> action, object state, bool configureAwait = true, CancellationToken cancellationToken = null)</code></pre>
|
||||
</div>
|
||||
|
||||
<section>
|
||||
<h5 class="parameters">Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>action</code></span> <span class="xref">System.Action</span><<span class="xref">System.Object</span>></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>state</code></span> <span class="xref">System.Object</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>configureAwait</code></span> <span class="xref">System.Boolean</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>cancellationToken</code></span> <span class="xref">CancellationToken</span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="returns">Returns</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><a class="xref" href="Cysharp.Threading.Tasks.UniTask.html">UniTask</a></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<a id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool*"></a>
|
||||
<h4 id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_System_Func_Cysharp_Threading_Tasks_UniTask__System_Boolean_CancellationToken_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool(System.Func{Cysharp.Threading.Tasks.UniTask},System.Boolean,CancellationToken)">RunOnThreadPool(Func<UniTask>, Boolean, CancellationToken)</h4>
|
||||
<div class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public static UniTask RunOnThreadPool(Func<UniTask> action, bool configureAwait = true, CancellationToken cancellationToken = null)</code></pre>
|
||||
</div>
|
||||
|
||||
<section>
|
||||
<h5 class="parameters">Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>action</code></span> <span class="xref">System.Func</span><<a class="xref" href="Cysharp.Threading.Tasks.UniTask.html">UniTask</a>></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>configureAwait</code></span> <span class="xref">System.Boolean</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>cancellationToken</code></span> <span class="xref">CancellationToken</span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="returns">Returns</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><a class="xref" href="Cysharp.Threading.Tasks.UniTask.html">UniTask</a></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<a id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool*"></a>
|
||||
<h4 id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_System_Func_System_Object_Cysharp_Threading_Tasks_UniTask__System_Object_System_Boolean_CancellationToken_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool(System.Func{System.Object,Cysharp.Threading.Tasks.UniTask},System.Object,System.Boolean,CancellationToken)">RunOnThreadPool(Func<Object, UniTask>, Object, Boolean, CancellationToken)</h4>
|
||||
<div class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public static UniTask RunOnThreadPool(Func<object, UniTask> action, object state, bool configureAwait = true, CancellationToken cancellationToken = null)</code></pre>
|
||||
</div>
|
||||
|
||||
<section>
|
||||
<h5 class="parameters">Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>action</code></span> <span class="xref">System.Func</span><<span class="xref">System.Object</span>, <a class="xref" href="Cysharp.Threading.Tasks.UniTask.html">UniTask</a>></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>state</code></span> <span class="xref">System.Object</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>configureAwait</code></span> <span class="xref">System.Boolean</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>cancellationToken</code></span> <span class="xref">CancellationToken</span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="returns">Returns</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><a class="xref" href="Cysharp.Threading.Tasks.UniTask.html">UniTask</a></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<a id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool*"></a>
|
||||
<h4 id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool__1_System_Func___0__System_Boolean_CancellationToken_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool``1(System.Func{``0},System.Boolean,CancellationToken)">RunOnThreadPool<T>(Func<T>, Boolean, CancellationToken)</h4>
|
||||
<div class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public static UniTask<T> RunOnThreadPool<T>(Func<T> func, bool configureAwait = true, CancellationToken cancellationToken = null)</code></pre>
|
||||
</div>
|
||||
|
||||
<section>
|
||||
<h5 class="parameters">Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>func</code></span> <span class="xref">System.Func</span><T></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>configureAwait</code></span> <span class="xref">System.Boolean</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>cancellationToken</code></span> <span class="xref">CancellationToken</span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="returns">Returns</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><a class="xref" href="Cysharp.Threading.Tasks.UniTask-1.html">UniTask</a><T></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="typeParameters">Type Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>T</code></span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<a id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool*"></a>
|
||||
<h4 id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool__1_System_Func_Cysharp_Threading_Tasks_UniTask___0___System_Boolean_CancellationToken_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool``1(System.Func{Cysharp.Threading.Tasks.UniTask{``0}},System.Boolean,CancellationToken)">RunOnThreadPool<T>(Func<UniTask<T>>, Boolean, CancellationToken)</h4>
|
||||
<div class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public static UniTask<T> RunOnThreadPool<T>(Func<UniTask<T>> func, bool configureAwait = true, CancellationToken cancellationToken = null)</code></pre>
|
||||
</div>
|
||||
|
||||
<section>
|
||||
<h5 class="parameters">Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>func</code></span> <span class="xref">System.Func</span><<a class="xref" href="Cysharp.Threading.Tasks.UniTask-1.html">UniTask</a><T>></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>configureAwait</code></span> <span class="xref">System.Boolean</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>cancellationToken</code></span> <span class="xref">CancellationToken</span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="returns">Returns</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><a class="xref" href="Cysharp.Threading.Tasks.UniTask-1.html">UniTask</a><T></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="typeParameters">Type Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>T</code></span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<a id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool*"></a>
|
||||
<h4 id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool__1_System_Func_System_Object___0__System_Object_System_Boolean_CancellationToken_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool``1(System.Func{System.Object,``0},System.Object,System.Boolean,CancellationToken)">RunOnThreadPool<T>(Func<Object, T>, Object, Boolean, CancellationToken)</h4>
|
||||
<div class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public static UniTask<T> RunOnThreadPool<T>(Func<object, T> func, object state, bool configureAwait = true, CancellationToken cancellationToken = null)</code></pre>
|
||||
</div>
|
||||
|
||||
<section>
|
||||
<h5 class="parameters">Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>func</code></span> <span class="xref">System.Func</span><<span class="xref">System.Object</span>, T></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>state</code></span> <span class="xref">System.Object</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>configureAwait</code></span> <span class="xref">System.Boolean</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>cancellationToken</code></span> <span class="xref">CancellationToken</span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="returns">Returns</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><a class="xref" href="Cysharp.Threading.Tasks.UniTask-1.html">UniTask</a><T></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="typeParameters">Type Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>T</code></span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<a id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool*"></a>
|
||||
<h4 id="Cysharp_Threading_Tasks_UniTask_RunOnThreadPool__1_System_Func_System_Object_Cysharp_Threading_Tasks_UniTask___0___System_Object_System_Boolean_CancellationToken_" data-uid="Cysharp.Threading.Tasks.UniTask.RunOnThreadPool``1(System.Func{System.Object,Cysharp.Threading.Tasks.UniTask{``0}},System.Object,System.Boolean,CancellationToken)">RunOnThreadPool<T>(Func<Object, UniTask<T>>, Object, Boolean, CancellationToken)</h4>
|
||||
<div class="markdown level1 summary"><p>Run action on the threadPool and return to main thread if configureAwait = true.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public static UniTask<T> RunOnThreadPool<T>(Func<object, UniTask<T>> func, object state, bool configureAwait = true, CancellationToken cancellationToken = null)</code></pre>
|
||||
</div>
|
||||
|
||||
<section>
|
||||
<h5 class="parameters">Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>func</code></span> <span class="xref">System.Func</span><<span class="xref">System.Object</span>, <a class="xref" href="Cysharp.Threading.Tasks.UniTask-1.html">UniTask</a><T>></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>state</code></span> <span class="xref">System.Object</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>configureAwait</code></span> <span class="xref">System.Boolean</span></dt>
|
||||
<dd></dd>
|
||||
<dt><span class="parametername"><code>cancellationToken</code></span> <span class="xref">CancellationToken</span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="returns">Returns</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><a class="xref" href="Cysharp.Threading.Tasks.UniTask-1.html">UniTask</a><T></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h5 class="typeParameters">Type Parameters</h5>
|
||||
<dl class="cysharpdocfx-valuedefinition">
|
||||
<dt><span class="parametername"><code>T</code></span></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<a id="Cysharp_Threading_Tasks_UniTask_SuppressCancellationThrow_" data-uid="Cysharp.Threading.Tasks.UniTask.SuppressCancellationThrow*"></a>
|
||||
|
||||
Reference in New Issue
Block a user