File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ namespace net . openstack . Core
2+ {
3+ using System . Threading . Tasks ;
4+
5+ /// <summary>
6+ /// Specifies when a <see cref="Task"/> representing an asynchronous server operation
7+ /// should be considered complete.
8+ /// </summary>
9+ /// <preliminary/>
10+ public enum AsyncCompletionOption
11+ {
12+ /// <summary>
13+ /// The <see cref="Task"/> representing the operation is considered complete after the
14+ /// request has been submitted to the server.
15+ /// </summary>
16+ RequestSubmitted ,
17+
18+ /// <summary>
19+ /// The <see cref="Task"/> representing the operation is considered complete after the
20+ /// server has completed processing the request.
21+ /// </summary>
22+ RequestCompleted ,
23+ }
24+ }
Original file line number Diff line number Diff line change 6060 <Reference Include =" WindowsBase" />
6161 </ItemGroup >
6262 <ItemGroup >
63+ <Compile Include =" Core\AsyncCompletionOption.cs" />
6364 <Compile Include =" Core\Caching\ICache`1.cs" />
6465 <Compile Include =" Core\Caching\NamespaceDoc.cs" />
6566 <Compile Include =" Core\Compat\Funcs.cs" />
Original file line number Diff line number Diff line change 5656 <Reference Include =" WindowsBase" />
5757 </ItemGroup >
5858 <ItemGroup >
59+ <Compile Include =" Core\AsyncCompletionOption.cs" />
5960 <Compile Include =" Core\Caching\ICache`1.cs" />
6061 <Compile Include =" Core\Caching\NamespaceDoc.cs" />
6162 <Compile Include =" Core\Domain\Converters\NamespaceDoc.cs" />
You can’t perform that action at this time.
0 commit comments