VsTaskLibraryHelper.GetAwaiter Method (VsTaskAwaiter)
Internal use only. Gets the awaiter instance that contains the task that will be used to schedule continuations. Adds await support for an awaiter instance that can be returned from a call to ResumeWith.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetAwaiter ( _
awaiter As VsTaskAwaiter _
) As VsTaskAwaiter
public static VsTaskAwaiter GetAwaiter(
this VsTaskAwaiter awaiter
)
[ExtensionAttribute]
public:
static VsTaskAwaiter^ GetAwaiter(
VsTaskAwaiter^ awaiter
)
static member GetAwaiter :
awaiter:VsTaskAwaiter -> VsTaskAwaiter
public static function GetAwaiter(
awaiter : VsTaskAwaiter
) : VsTaskAwaiter
Parameters
awaiter
Type: VsTaskAwaiter[in] Awaiter that contains the task that will be used to schedule continuations.
Return Value
Type: VsTaskAwaiter
The same instance of the awaiter on which this method was called.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type VsTaskAwaiter. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
This method returns the same awaiter as the one provided in the awaiter parameter.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.