we can actually get a quick connect code now, and authenticating by username and password works!

This commit is contained in:
random() 2025-05-13 13:16:58 -06:00
parent 55e3babc5b
commit d5017d32ba
96 changed files with 381 additions and 724 deletions

View file

@ -0,0 +1,684 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions.Desktop</name>
</assembly>
<members>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:AsyncPlatformExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncPlatformExtensions.DownloadStringTaskAsync(System.Net.WebClient,System.String)">
<summary>Downloads the resource with the specified URI as a string, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<returns>A Task that contains the downloaded string.</returns>
</member>
<member name="M:AsyncPlatformExtensions.DownloadStringTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Downloads the resource with the specified URI as a string, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<returns>A Task that contains the downloaded string.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenReadTaskAsync(System.Net.WebClient,System.String)">
<summary>Opens a readable stream for the data downloaded from a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenReadTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Opens a readable stream for the data downloaded from a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.String,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<param name="method">The HTTP method that should be used to open the stream.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.Uri,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<param name="method">The HTTP method that should be used to open the stream.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.Uri,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.String,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the data.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.Uri,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the data.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.GetUri(System.Net.WebClient,System.String)">
<summary>Converts a path to a Uri using the WebClient's logic.</summary>
<remarks>Based on WebClient's private GetUri method.</remarks>
</member>
<member name="M:AsyncPlatformExtensions.GetUri(System.Net.WebClient,System.Uri)">
<summary>Converts a path to a Uri using the WebClient's logic.</summary>
<remarks>Based on WebClient's private GetUri method.</remarks>
</member>
<member name="M:AsyncPlatformExtensions.DownloadDataTaskAsync(System.Net.WebClient,System.String)">
<summary>Downloads the resource with the specified URI as a byte array, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<returns>A Task that contains the downloaded data.</returns>
</member>
<member name="M:AsyncPlatformExtensions.DownloadDataTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Downloads the resource with the specified URI as a byte array, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<returns>A Task that contains the downloaded data.</returns>
</member>
<member name="M:AsyncPlatformExtensions.DownloadFileTaskAsync(System.Net.WebClient,System.String,System.String)">
<summary>Downloads the resource with the specified URI to a local file, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<param name="fileName">The name of the local file that is to receive the data.</param>
<returns>A Task that contains the downloaded data.</returns>
</member>
<member name="M:AsyncPlatformExtensions.DownloadFileTaskAsync(System.Net.WebClient,System.Uri,System.String)">
<summary>Downloads the resource with the specified URI to a local file, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<param name="fileName">The name of the local file that is to receive the data.</param>
<returns>A Task that contains the downloaded data.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadDataTaskAsync(System.Net.WebClient,System.String,System.Byte[])">
<summary>Uploads data to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadDataTaskAsync(System.Net.WebClient,System.Uri,System.Byte[])">
<summary>Uploads data to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadDataTaskAsync(System.Net.WebClient,System.String,System.String,System.Byte[])">
<summary>Uploads data to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the data.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadDataTaskAsync(System.Net.WebClient,System.Uri,System.String,System.Byte[])">
<summary>Uploads data to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the data.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadFileTaskAsync(System.Net.WebClient,System.String,System.String)">
<summary>Uploads a file to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the file should be uploaded.</param>
<param name="fileName">A path to the file to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadFileTaskAsync(System.Net.WebClient,System.Uri,System.String)">
<summary>Uploads a file to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the file should be uploaded.</param>
<param name="fileName">A path to the file to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadFileTaskAsync(System.Net.WebClient,System.String,System.String,System.String)">
<summary>Uploads a file to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the file should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the file.</param>
<param name="fileName">A path to the file to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadFileTaskAsync(System.Net.WebClient,System.Uri,System.String,System.String)">
<summary>Uploads a file to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the file should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the file.</param>
<param name="fileName">A path to the file to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.AnnounceOnlineTaskAsync(System.ServiceModel.Discovery.AnnouncementClient,System.ServiceModel.Discovery.EndpointDiscoveryMetadata)">
<summary>Causes an online announcement (Hello) message to be sent asynchronously with the specified endpoint discovery metadata and user-defined state. The specified is called when the operation completes.</summary>
<returns>Task instance.</returns>
<param name="discoveryMetadata">The endpoint discovery metadata.</param>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AnnounceOfflineTaskAsync(System.ServiceModel.Discovery.AnnouncementClient,System.ServiceModel.Discovery.EndpointDiscoveryMetadata)">
<summary>Causes an offline announcement (Bye) message to be sent asynchronously with the specified endpoint discovery metadata and user-defined state. The specified is called when the operation completes.</summary>
<returns>Task instance.</returns>
<param name="discoveryMetadata">The endpoint discovery metadata.</param>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.GetContextAsync(System.Net.HttpListener)">
<summary>Begins asynchronously retrieving an incoming request.</summary>
<returns>Task object that indicates the status of the asynchronous operation.</returns>
<exception cref="T:System.Net.HttpListenerException">A Win32 function call failed. Check the exception's property to determine the cause of the exception.</exception>
<exception cref="T:System.InvalidOperationException">This object has not been started or is currently stopped.</exception>
<exception cref="T:System.ObjectDisposedException">This object is closed.</exception>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.GetClientCertificateAsync(System.Net.HttpListenerRequest)">
<summary>Starts an asynchronous request for the client's X.509 v.3 certificate.</summary>
<returns>Task that indicates the status of the operation.</returns>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AuthenticateAsClientAsync(System.Net.Security.NegotiateStream)">
<summary>Called by clients to begin an asynchronous operation to authenticate the client, and optionally the server, in a client-server connection. This method does not block.</summary>
<returns>Task object indicating the status of the asynchronous operation. </returns>
<exception cref="T:System.Security.Authentication.AuthenticationException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.Security.Authentication.InvalidCredentialException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.ObjectDisposedException">This object has been closed.</exception>
<exception cref="T:System.InvalidOperationException">Authentication has already occurred.- or -This stream was used previously to attempt authentication as the server. You cannot use the stream to retry authentication as the client.</exception>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AuthenticateAsClientAsync(System.Net.Security.NegotiateStream,System.Net.NetworkCredential,System.String)">
<summary>Called by clients to begin an asynchronous operation to authenticate the client, and optionally the server, in a client-server connection. The authentication process uses the specified credentials. This method does not block.</summary>
<returns>Task object indicating the status of the asynchronous operation. </returns>
<param name="credential">The that is used to establish the identity of the client.</param>
<param name="targetName">The Service Principal Name (SPN) that uniquely identifies the server to authenticate.</param>
<exception cref="T:System.ArgumentNullException"> is null.- or -<paramref name="targetName" /> is null.</exception>
<exception cref="T:System.Security.Authentication.AuthenticationException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.Security.Authentication.InvalidCredentialException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.ObjectDisposedException">This object has been closed.</exception>
<exception cref="T:System.InvalidOperationException">Authentication has already occurred.- or -This stream was used previously to attempt authentication as the server. You cannot use the stream to retry authentication as the client.</exception>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AuthenticateAsClientAsync(System.Net.Security.NegotiateStream,System.Net.NetworkCredential,System.Security.Authentication.ExtendedProtection.ChannelBinding,System.String)">
<summary>Called by clients to begin an asynchronous operation to authenticate the client, and optionally the server, in a client-server connection. The authentication process uses the specified credentials and channel binding. This method does not block.</summary>
<returns>Task object indicating the status of the asynchronous operation.</returns>
<param name="credential">The that is used to establish the identity of the client.</param>
<param name="binding">The that is used for extended protection.</param>
<param name="targetName">The Service Principal Name (SPN) that uniquely identifies the server to authenticate.</param>
<exception cref="T:System.ArgumentNullException"> is null.- or -<paramref name="targetName" /> is null.</exception>
<exception cref="T:System.Security.Authentication.AuthenticationException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.Security.Authentication.InvalidCredentialException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.InvalidOperationException">Authentication has already occurred.- or -This stream was used previously to attempt authentication as the server. You cannot use the stream to retry authentication as the client.</exception>
<exception cref="T:System.ObjectDisposedException">This object has been closed.</exception>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AuthenticateAsServerAsync(System.Net.Security.NegotiateStream)">
<summary>Called by servers to begin an asynchronous operation to authenticate the client, and optionally the server, in a client-server connection. This method does not block.</summary>
<returns>Task object indicating the status of the asynchronous operation. </returns>
<exception cref="T:System.Security.Authentication.AuthenticationException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.Security.Authentication.InvalidCredentialException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.ObjectDisposedException">This object has been closed.</exception>
<exception cref="T:System.NotSupportedException">Windows 95 and Windows 98 are not supported.</exception>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AuthenticateAsServerAsync(System.Net.Security.NegotiateStream,System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy)">
<summary>Called by servers to begin an asynchronous operation to authenticate the client, and optionally the server, in a client-server connection. The authentication process uses the specified extended protection policy. This method does not block.</summary>
<returns>Task object indicating the status of the asynchronous operation.</returns>
<param name="policy">The that is used for extended protection.</param>
<exception cref="T:System.ArgumentException">The and <see cref="P:System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy.CustomServiceNames" /> on the extended protection policy passed in the parameter are both null.</exception>
<exception cref="T:System.Security.Authentication.AuthenticationException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.Security.Authentication.InvalidCredentialException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.NotSupportedException">Windows 95 and Windows 98 are not supported.</exception>
<exception cref="T:System.ObjectDisposedException">This object has been closed.</exception>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AuthenticateAsServerAsync(System.Net.Security.NegotiateStream,System.Net.NetworkCredential,System.Net.Security.ProtectionLevel,System.Security.Principal.TokenImpersonationLevel)">
<summary>Called by servers to begin an asynchronous operation to authenticate the client, and optionally the server, in a client-server connection. The authentication process uses the specified server credentials and authentication options. This method does not block.</summary>
<returns>Task object indicating the status of the asynchronous operation. </returns>
<param name="credential">The that is used to establish the identity of the client.</param>
<param name="requiredProtectionLevel">One of the values, indicating the security services for the stream.</param>
<param name="requiredImpersonationLevel">One of the values, indicating how the server can use the client's credentials to access resources.</param>
<exception cref="T:System.ArgumentNullException"> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"> must be , <see cref="F:System.Security.Principal.TokenImpersonationLevel.Impersonation" />, or <see cref="F:System.Security.Principal.TokenImpersonationLevel.Delegation" />,</exception>
<exception cref="T:System.Security.Authentication.AuthenticationException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.Security.Authentication.InvalidCredentialException">The authentication failed. You can use this object to retry the authentication.</exception>
<exception cref="T:System.ObjectDisposedException">This object has been closed.</exception>
<exception cref="T:System.InvalidOperationException">Authentication has already occurred.- or -This stream was used previously to attempt authentication as the client. You cannot use the stream to retry authentication as the server.</exception>
<exception cref="T:System.NotSupportedException">Windows 95 and Windows 98 are not supported.</exception>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AuthenticateAsClientAsync(System.Net.Security.SslStream,System.String)">
<summary>Called by clients to begin an asynchronous operation to authenticate the server and optionally the client.</summary>
<returns>Task object that indicates the status of the asynchronous operation. </returns>
<param name="targetHost">The name of the server that shares this .</param>
<exception cref="T:System.ArgumentNullException"> is null.</exception>
<exception cref="T:System.Security.Authentication.AuthenticationException">The authentication failed and left this object in an unusable state.</exception>
<exception cref="T:System.InvalidOperationException">Authentication has already occurred.-or-Server authentication using this was tried previously.-or- Authentication is already in progress.</exception>
<exception cref="T:System.ObjectDisposedException">This object has been closed.</exception>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AuthenticateAsServerAsync(System.Net.Security.SslStream,System.Security.Cryptography.X509Certificates.X509Certificate)">
<summary>Called by servers to begin an asynchronous operation to authenticate the client and optionally the server in a client-server connection.</summary>
<returns>Task object indicating the status of the asynchronous operation. </returns>
<param name="serverCertificate">The X509Certificate used to authenticate the server.</param>
<exception cref="T:System.ArgumentNullException"> is null.</exception>
<exception cref="T:System.Security.Authentication.AuthenticationException">The authentication failed and left this object in an unusable state.</exception>
<exception cref="T:System.InvalidOperationException">Authentication has already occurred.-or-Client authentication using this was tried previously.-or- Authentication is already in progress.</exception>
<exception cref="T:System.ObjectDisposedException">This object has been closed.</exception>
<exception cref="T:System.PlatformNotSupportedException">The method is not supported on Windows 95, Windows 98, or Windows Millennium.</exception>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.ConnectAsync(System.Net.Sockets.TcpClient,System.String,System.Int32)">
<summary>Starts an asynchronous request for a remote host connection. The host is specified by a host name and a port number.</summary>
<returns>Task that represents the asynchronous connection.</returns>
<param name="hostname">The name of the remote host.</param>
<param name="port">The port number of the remote host.</param>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ObjectDisposedException">The has been closed. </exception>
<exception cref="T:System.NotSupportedException">This method is valid for sockets in the or families.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The port number is not valid.</exception>
<exception cref="T:System.InvalidOperationException">The is ing.</exception>
<PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Net.SocketPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.ConnectAsync(System.Net.Sockets.TcpClient,System.Net.IPAddress,System.Int32)">
<summary>Starts an asynchronous request for a remote host connection. The host is specified by an and a port number.</summary>
<returns>Task that represents the asynchronous connection.</returns>
<param name="address">The of the remote host.</param>
<param name="port">The port number of the remote host.</param>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.Net.Sockets.SocketException">An error occurred when attempting to access the socket. See the Remarks section for more information. </exception>
<exception cref="T:System.ObjectDisposedException">The has been closed. </exception>
<exception cref="T:System.NotSupportedException">The is not in the socket family.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The port number is not valid.</exception>
<exception cref="T:System.ArgumentException">The length of is zero.</exception>
<exception cref="T:System.InvalidOperationException">The is ing.</exception>
<PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Net.SocketPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.ConnectAsync(System.Net.Sockets.TcpClient,System.Net.IPAddress[],System.Int32)">
<summary>Starts an asynchronous request for a remote host connection. The host is specified by an array and a port number.</summary>
<returns>Task that represents the asynchronous connections.</returns>
<param name="ipAddresses">At least one , designating the remote host.</param>
<param name="port">The port number of the remote host.</param>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.Net.Sockets.SocketException">An error occurred when attempting to access the socket. See the Remarks section for more information. </exception>
<exception cref="T:System.ObjectDisposedException">The has been closed. </exception>
<exception cref="T:System.NotSupportedException">This method is valid for sockets that use or .</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The port number is not valid.</exception>
<exception cref="T:System.ArgumentException">The length of is zero.</exception>
<exception cref="T:System.InvalidOperationException">The is ing.</exception>
<PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Net.SocketPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AcceptSocketAsync(System.Net.Sockets.TcpListener)">
<summary>Starts an asynchronous operation to accept an incoming connection attempt.</summary>
<returns>Task that represents the asynchronous creation of the <see cref="T:System.Net.Sockets.Socket" />.</returns>
<exception cref="T:System.Net.Sockets.SocketException">An error occurred while attempting to access the socket. See the Remarks section for more information. </exception>
<exception cref="T:System.ObjectDisposedException">The has been closed. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" /> <IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.AcceptTcpClientAsync(System.Net.Sockets.TcpListener)">
<summary>Starts an asynchronous operation to accept an incoming connection attempt.</summary>
<returns>Task that represents the asynchronous creation of the <see cref="T:System.Net.Sockets.TcpClient" />.</returns>
<exception cref="T:System.Net.Sockets.SocketException">An error occurred while attempting to access the socket. See the Remarks section for more information. </exception>
<exception cref="T:System.ObjectDisposedException">The has been closed. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" /> <IPermission class="System.Diagnostics.PerformanceCounterPermission, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.SendAsync(System.Net.Sockets.UdpClient,System.Byte[],System.Int32,System.Net.IPEndPoint)">
<summary>Sends a datagram to a destination asynchronously. The destination is specified by a .</summary>
<returns>Task object that represents the asynchronous send.</returns>
<param name="datagram">A array that contains the data to be sent.</param>
<param name="bytes">The number of bytes to send.</param>
<param name="endPoint">The that represents the destination for the data.</param>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.SendAsync(System.Net.Sockets.UdpClient,System.Byte[],System.Int32)">
<summary>Sends a datagram to a remote host asynchronously. The destination was specified previously by a call to .</summary>
<returns>Task object that represents the asynchronous send.</returns>
<param name="datagram">A array that contains the data to be sent.</param>
<param name="bytes">The number of bytes to send.</param>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.SendAsync(System.Net.Sockets.UdpClient,System.Byte[],System.Int32,System.String,System.Int32)">
<summary>Sends a datagram to a remote host asynchronously. The destination was specified previously by a call to .</summary>
<returns>Task object that represents the asynchronous send.</returns>
<param name="datagram">A array that contains the data to be sent.</param>
<param name="bytes">The number of bytes to send.</param>
<param name="hostname">The host name.</param>
<param name="port">The host name.</param>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.GetUnicastAddressesAsync(System.Net.NetworkInformation.IPGlobalProperties)">
<summary>Starts an asynchronous request to retrieve the stable unicast IP address table on the local computer.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.NotImplementedException">This method is not implemented on the platform. This method uses the native NotifyStableUnicastIpAddressTable function that is supported on Windows Vista and later. </exception>
<exception cref="T:System.ComponentModel.Win32Exception">The call to the native NotifyStableUnicastIpAddressTable function failed.</exception>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.OpenAsync(System.Data.SqlClient.SqlConnection)">
<summary>Opens the connection asynchronously.</summary>
<param name="source">The source.</param>
<returns>Task that represents the asynchronous request.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenAsync(System.Data.SqlClient.SqlConnection,System.Threading.CancellationToken)">
<summary>Opens the connection asynchronously.</summary>
<param name="source">The source.</param>
<param name="cancellationToken">The cancellation token.</param>
<returns>Task that represents the asynchronous request.</returns>
</member>
<member name="M:AsyncPlatformExtensions.ExecuteNonQueryAsync(System.Data.SqlClient.SqlCommand)">
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this , given a callback procedure and state information.</summary>
<returns>Task that can be used to poll or wait for results, or both; this value is also needed when invoking <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteNonQuery(System.IAsyncResult)" />, which returns the number of affected rows.</returns>
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred while executing the command text.</exception>
<exception cref="T:System.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this .</exception>
<filterpriority>2</filterpriority>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.ExecuteNonQueryAsync(System.Data.SqlClient.SqlCommand,System.Threading.CancellationToken)">
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this , given a callback procedure and state information.</summary>
<returns>Task that can be used to poll or wait for results, or both; this value is also needed when invoking <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteNonQuery(System.IAsyncResult)" />, which returns the number of affected rows.</returns>
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred while executing the command text.</exception>
<exception cref="T:System.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this .</exception>
<filterpriority>2</filterpriority>
<param name="cancellationToken">The cancellation token.</param>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.ExecuteXmlReaderAsync(System.Data.SqlClient.SqlCommand)">
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this and returns results as an <see cref="T:System.Xml.XmlReader" /> object, using a callback procedure.</summary>
<returns>Task that can be used to poll, wait for results, or both; this value is also needed when the <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteXmlReader(System.IAsyncResult)" /> is called, which returns the results of the command as XML.</returns>
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred while executing the command text.</exception>
<exception cref="T:System.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this .</exception>
<filterpriority>2</filterpriority>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.ExecuteXmlReaderAsync(System.Data.SqlClient.SqlCommand,System.Threading.CancellationToken)">
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this and returns results as an <see cref="T:System.Xml.XmlReader" /> object, using a callback procedure.</summary>
<returns>Task that can be used to poll, wait for results, or both; this value is also needed when the <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteXmlReader(System.IAsyncResult)" /> is called, which returns the results of the command as XML.</returns>
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred while executing the command text.</exception>
<exception cref="T:System.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this .</exception>
<filterpriority>2</filterpriority>
<param name="cancellationToken">The cancellation token.</param>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.ExecuteReaderAsync(System.Data.SqlClient.SqlCommand)">
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this and retrieves one or more result sets from the server, given a callback procedure and state information.</summary>
<returns>Task that can be used to poll, wait for results, or both; this value is also needed when invoking <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteReader(System.IAsyncResult)" />, which returns a <see cref="T:System.Data.SqlClient.SqlDataReader" /> instance which can be used to retrieve the returned rows.</returns>
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred while executing the command text.</exception>
<exception cref="T:System.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this .</exception>
<filterpriority>2</filterpriority>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.ExecuteReaderAsync(System.Data.SqlClient.SqlCommand,System.Threading.CancellationToken)">
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this and retrieves one or more result sets from the server, given a callback procedure and state information.</summary>
<returns>Task that can be used to poll, wait for results, or both; this value is also needed when invoking <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteReader(System.IAsyncResult)" />, which returns a <see cref="T:System.Data.SqlClient.SqlDataReader" /> instance which can be used to retrieve the returned rows.</returns>
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred while executing the command text.</exception>
<exception cref="T:System.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this .</exception>
<filterpriority>2</filterpriority>
<param name="cancellationToken">The cancellation token.</param>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.GetMetadataAsync(System.ServiceModel.Description.MetadataExchangeClient)">
<summary>Starts an asynchronous method call that returns a .</summary>
<returns>The metadata.</returns>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.GetMetadataAsync(System.ServiceModel.Description.MetadataExchangeClient,System.Uri,System.ServiceModel.Description.MetadataExchangeClientMode)">
<summary>Starts an asynchronous method call that returns a using the specified address, callback, asynchronous state, and download mechanism.</summary>
<returns>The metadata obtained from the specified .</returns>
<param name="address">The address of the metadata.</param>
<param name="mode">The value to use when downloading the metadata.</param>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.GetMetadataAsync(System.ServiceModel.Description.MetadataExchangeClient,System.ServiceModel.EndpointAddress)">
<summary>Starts an asynchronous method call that returns a using the specified address, callback, and asynchronous state.</summary>
<returns>The metadata obtained from the specified .</returns>
<param name="address">The address of the metadata.</param>
<param name="source">The source.</param>
</member>
<member name="M:AsyncPlatformExtensions.FindTaskAsync(System.ServiceModel.Discovery.DiscoveryClient,System.ServiceModel.Discovery.FindCriteria)">
<summary>
Begins an asynchronous find operation with the specified criteria.
</summary>
<param name="discoveryClient">The discovery client.</param>
<param name="criteria">The criteria for finding services.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncPlatformExtensions.ResolveTaskAsync(System.ServiceModel.Discovery.DiscoveryClient,System.ServiceModel.Discovery.ResolveCriteria)">
<summary>
Begins an asynchronous resolve operation with the specified criteria.
</summary>
<param name="discoveryClient">The discovery client.</param>
<param name="criteria">The criteria for matching a service endpoint.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsync(System.Net.NetworkInformation.Ping,System.Net.IPAddress)">
<summary>
Asynchronously attempts to send an Internet Control Message Protocol (ICMP) echo message.
</summary>
<param name="ping">The Ping.</param>
<param name="address">An IPAddress that identifies the computer that is the destination for the ICMP echo message.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsync(System.Net.NetworkInformation.Ping,System.String)">
<summary>
Asynchronously attempts to send an Internet Control Message Protocol (ICMP) echo message.
</summary>
<param name="ping">The Ping.</param>
<param name="hostNameOrAddress">
A String that identifies the computer that is the destination for the ICMP echo message.
The value specified for this parameter can be a host name or a string representation of an IP address.
</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsync(System.Net.NetworkInformation.Ping,System.Net.IPAddress,System.Int32)">
<summary>
Asynchronously attempts to send an Internet Control Message Protocol (ICMP) echo message.
</summary>
<param name="ping">The Ping.</param>
<param name="address">An IPAddress that identifies the computer that is the destination for the ICMP echo message.</param>
<param name="timeout">
An Int32 value that specifies the maximum number of milliseconds (after sending the echo message)
to wait for the ICMP echo reply message.
</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsync(System.Net.NetworkInformation.Ping,System.String,System.Int32)">
<summary>
Asynchronously attempts to send an Internet Control Message Protocol (ICMP) echo message.
</summary>
<param name="ping">The Ping.</param>
<param name="hostNameOrAddress">
A String that identifies the computer that is the destination for the ICMP echo message.
The value specified for this parameter can be a host name or a string representation of an IP address.
</param>
<param name="timeout">
An Int32 value that specifies the maximum number of milliseconds (after sending the echo message)
to wait for the ICMP echo reply message.
</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsync(System.Net.NetworkInformation.Ping,System.Net.IPAddress,System.Int32,System.Byte[])">
<summary>
Asynchronously attempts to send an Internet Control Message Protocol (ICMP) echo message.
</summary>
<param name="ping">The Ping.</param>
<param name="address">An IPAddress that identifies the computer that is the destination for the ICMP echo message.</param>
<param name="timeout">
An Int32 value that specifies the maximum number of milliseconds (after sending the echo message)
to wait for the ICMP echo reply message.
</param>
<param name="buffer">
A Byte array that contains data to be sent with the ICMP echo message and returned
in the ICMP echo reply message. The array cannot contain more than 65,500 bytes.
</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsync(System.Net.NetworkInformation.Ping,System.String,System.Int32,System.Byte[])">
<summary>
Asynchronously attempts to send an Internet Control Message Protocol (ICMP) echo message.
</summary>
<param name="ping">The Ping.</param>
<param name="hostNameOrAddress">
A String that identifies the computer that is the destination for the ICMP echo message.
The value specified for this parameter can be a host name or a string representation of an IP address.
</param>
<param name="timeout">
An Int32 value that specifies the maximum number of milliseconds (after sending the echo message)
to wait for the ICMP echo reply message.
</param>
<param name="buffer">
A Byte array that contains data to be sent with the ICMP echo message and returned
in the ICMP echo reply message. The array cannot contain more than 65,500 bytes.
</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsync(System.Net.NetworkInformation.Ping,System.Net.IPAddress,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions)">
<summary>
Asynchronously attempts to send an Internet Control Message Protocol (ICMP) echo message.
</summary>
<param name="ping">The Ping.</param>
<param name="address">An IPAddress that identifies the computer that is the destination for the ICMP echo message.</param>
<param name="timeout">
An Int32 value that specifies the maximum number of milliseconds (after sending the echo message)
to wait for the ICMP echo reply message.
</param>
<param name="buffer">
A Byte array that contains data to be sent with the ICMP echo message and returned
in the ICMP echo reply message. The array cannot contain more than 65,500 bytes.
</param>
<param name="options">A PingOptions object used to control fragmentation and Time-to-Live values for the ICMP echo message packet.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsync(System.Net.NetworkInformation.Ping,System.String,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions)">
<summary>
Asynchronously attempts to send an Internet Control Message Protocol (ICMP) echo message.
</summary>
<param name="ping">The Ping.</param>
<param name="hostNameOrAddress">
A String that identifies the computer that is the destination for the ICMP echo message.
The value specified for this parameter can be a host name or a string representation of an IP address.
</param>
<param name="timeout">
An Int32 value that specifies the maximum number of milliseconds (after sending the echo message)
to wait for the ICMP echo reply message.
</param>
<param name="buffer">
A Byte array that contains data to be sent with the ICMP echo message and returned
in the ICMP echo reply message. The array cannot contain more than 65,500 bytes.
</param>
<param name="options">A PingOptions object used to control fragmentation and Time-to-Live values for the ICMP echo message packet.</param>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsyncCore(System.Net.NetworkInformation.Ping,System.Object,System.Action{System.Threading.Tasks.TaskCompletionSource{System.Net.NetworkInformation.PingReply}})">
<summary>The core implementation of SendTaskAsync.</summary>
<param name="ping">The Ping.</param>
<param name="userToken">A user-defined object stored in the resulting Task.</param>
<param name="sendAsync">
A delegate that initiates the asynchronous send.
The provided TaskCompletionSource must be passed as the user-supplied state to the actual Ping.SendAsync method.
</param>
<returns></returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsync(System.Net.Mail.SmtpClient,System.String,System.String,System.String,System.String)">
<summary>Sends an e-mail message asynchronously.</summary>
<param name="smtpClient">The client.</param>
<param name="from">A String that contains the address information of the message sender.</param>
<param name="recipients">A String that contains the address that the message is sent to.</param>
<param name="subject">A String that contains the subject line for the message.</param>
<param name="body">A String that contains the message body.</param>
<returns>A Task that represents the asynchronous send.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsync(System.Net.Mail.SmtpClient,System.Net.Mail.MailMessage)">
<summary>Sends an e-mail message asynchronously.</summary>
<param name="smtpClient">The client.</param>
<param name="message">A MailMessage that contains the message to send.</param>
<returns>A Task that represents the asynchronous send.</returns>
</member>
<member name="M:AsyncPlatformExtensions.SendTaskAsyncCore(System.Net.Mail.SmtpClient,System.Object,System.Action{System.Threading.Tasks.TaskCompletionSource{System.Object}})">
<summary>The core implementation of SendTaskAsync.</summary>
<param name="smtpClient">The client.</param>
<param name="userToken">The user-supplied state.</param>
<param name="sendAsync">
A delegate that initiates the asynchronous send.
The provided TaskCompletionSource must be passed as the user-supplied state to the actual SmtpClient.SendAsync method.
</param>
<returns></returns>
</member>
<member name="T:System.Net.DnsEx">
<summary>Provides asynchronous wrappers for the <see cref="T:System.Net.Dns"/> class.</summary>
</member>
<member name="M:System.Net.DnsEx.GetHostAddressesAsync(System.String)">
<summary>Asynchronously returns the Internet Protocol (IP) addresses for the specified host.</summary>
<param name="hostNameOrAddress">The host name or IP address to resolve.</param>
<returns>An array of type System.Net.IPAddress that holds the IP addresses for the host specified.</returns>
</member>
<member name="M:System.Net.DnsEx.GetHostEntryAsync(System.Net.IPAddress)">
<summary>Asynchronously resolves an IP address to an System.Net.IPHostEntry instance.</summary>
<param name="address">The IP address to resolve.</param>
<returns>An System.Net.IPHostEntry instance that contains address information about the host.</returns>
</member>
<member name="M:System.Net.DnsEx.GetHostEntryAsync(System.String)">
<summary>Asynchronously resolves an IP address to an System.Net.IPHostEntry instance.</summary>
<param name="hostNameOrAddress">The host name or IP address to resolve.</param>
<returns>An System.Net.IPHostEntry instance that contains address information about the host.</returns>
</member>
</members>
</doc>

View file

@ -0,0 +1,275 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:AsyncExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsyncInternal(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads a maximum of count characters from the reader asynchronously and writes
the data to buffer, beginning at index.
</summary>
<param name="buffer">
When the operation completes, contains the specified character array with the
values between index and (index + count - 1) replaced by the characters read
from the current source.
</param>
<param name="count">
The maximum number of characters to read. If the end of the stream is reached
before count of characters is read into buffer, the current method returns.
</param>
<param name="index">The place in buffer at which to begin writing.</param>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadBlockAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads asynchronously a maximum of count characters from the current stream, and writes the
data to buffer, beginning at index.
</summary>
<param name="source">The source reader.</param>
<param name="buffer">
When this method returns, this parameter contains the specified character
array with the values between index and (index + count -1) replaced by the
characters read from the current source.
</param>
<param name="index">The position in buffer at which to begin writing.</param>
<param name="count">The maximum number of characters to read.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadLineAsync(System.IO.TextReader)">
<summary>
Reads a line of characters from the reader and returns the string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadToEndAsync(System.IO.TextReader)">
<summary>
Reads all characters from the current position to the end of the TextReader
and returns them as one string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter)">
<summary>Writes a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.TextWriter)">
<summary>
Clears all buffers for the current writer and causes any buffered data to
be written to the underlying device.
</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.GetResponseAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a web resource.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to . </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncExtensions.GetRequestStreamAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a object to use to write data.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.Net.ProtocolViolationException">The property is GET and the application writes to the stream. </exception>
<exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to . </exception>
<exception cref="T:System.ApplicationException">No write stream is available. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,630 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks</name>
</assembly>
<members>
<member name="T:AwaitExtensions">
<summary>
Provides extension methods for threading-related types.
</summary>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.Int32)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time in milliseconds for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.TimeSpan)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.GetAwaiter(System.Threading.Tasks.Task)">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.GetAwaiter``1(System.Threading.Tasks.Task{``0})">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<typeparam name="TResult">Specifies the type of data returned by the task.</typeparam>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait(System.Threading.Tasks.Task,System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait``1(System.Threading.Tasks.Task{``0},System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="T:Microsoft.ProgressEventHandler`1">
<summary>Event handler for progress reports.</summary>
<typeparam name="T">Specifies the type of data for the progress report.</typeparam>
<param name="sender">The sender of the report.</param>
<param name="value">The reported value.</param>
</member>
<member name="T:Microsoft.Progress`1">
<summary>
Provides an IProgress{T} that invokes callbacks for each reported progress value.
</summary>
<typeparam name="T">Specifies the type of the progress report value.</typeparam>
<remarks>
Any handler provided to the constructor or event handlers registered with
the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event are invoked through a
<see cref="T:System.Threading.SynchronizationContext"/> instance captured
when the instance is constructed. If there is no current SynchronizationContext
at the time of construction, the callbacks will be invoked on the ThreadPool.
</remarks>
</member>
<member name="F:Microsoft.Progress`1.m_synchronizationContext">
<summary>The synchronization context captured upon construction. This will never be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_handler">
<summary>The handler specified to the constructor. This may be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_invokeHandlers">
<summary>A cached delegate used to post invocation to the synchronization context.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/>.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor(System.Action{`0})">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/> with the specified callback.</summary>
<param name="handler">
A handler to invoke for each reported progress value. This handler will be invoked
in addition to any delegates registered with the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event.
</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="handler"/> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:Microsoft.Progress`1.OnReport(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.System#IProgress{T}#Report(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.InvokeHandlers(System.Object)">
<summary>Invokes the action and event callbacks.</summary>
<param name="state">The progress value.</param>
</member>
<member name="E:Microsoft.Progress`1.ProgressChanged">
<summary>Raised for each reported progress value.</summary>
<remarks>
Handlers registered with this event will be invoked on the
<see cref="T:System.Threading.SynchronizationContext"/> captured when the instance was constructed.
</remarks>
</member>
<member name="T:Microsoft.ProgressStatics">
<summary>Holds static values for <see cref="T:Microsoft.Progress`1"/>.</summary>
<remarks>This avoids one static instance per type T.</remarks>
</member>
<member name="F:Microsoft.ProgressStatics.DefaultContext">
<summary>A default synchronization context that targets the ThreadPool.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.ThrowAsync(System.Exception,System.Threading.SynchronizationContext)">
<summary>Throws the exception on the ThreadPool.</summary>
<param name="exception">The exception to propagate.</param>
<param name="targetContext">The target context on which to propagate the exception. Null to use the ThreadPool.</param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.m_configuredTaskAwaiter">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to await.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured
when BeginAwait is called; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.m_configuredTaskAwaiter">
<summary>The underlying awaitable on whose logic this awaitable relies.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.CONTINUE_ON_CAPTURED_CONTEXT_DEFAULT">
<summary>The default value to use for continueOnCapturedContext.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.InvalidOperationException_TaskNotCompleted">
<summary>Error message for GetAwaiter.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.#ctor(System.Threading.Tasks.Task)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task)">
<summary>
Fast checks for the end of an await operation to determine whether more needs to be done
prior to completing the await.
</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(System.Threading.Tasks.Task)">
<summary>Handles validations on tasks that aren't successfully completed.</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task)">
<summary>Throws an exception to handle a task that completed in a state other than RanToCompletion.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The awaited task.</param>
<param name="continuation">The action to invoke when the await operation completes.</param>
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.RunNoException(System.Action)">
<summary>Invokes the delegate in a try/catch that will propagate the exception asynchronously on the ThreadPool.</summary>
<param name="continuation"></param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsValidLocationForInlining">
<summary>Whether the current thread is appropriate for inlining the await continuation.</summary>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task`1"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable">
<summary>Provides an awaitable context for switching into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.GetAwaiter">
<summary>Gets an awaiter for this <see cref="T:Microsoft.Runtime.CompilerServices.YieldAwaitable"/>.</summary>
<returns>An awaiter for this awaitable.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter">
<summary>Provides an awaiter that switches into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.s_completed">
<summary>A completed task.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult">
<summary>Ends the await operation.</summary>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.IsCompleted">
<summary>Gets whether a yield is not required.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:System.Threading.Tasks.TaskEx">
<summary>Provides methods for creating and manipulating tasks.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action,System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the function.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="F:System.Threading.Tasks.TaskEx.s_preCompletedTask">
<summary>An already completed task.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAllCore``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task},System.Action{System.Threading.Tasks.Task[],System.Threading.Tasks.TaskCompletionSource{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<param name="setResultAction">
A callback invoked when all of the tasks complete successfully in the RanToCompletion state.
This callback is responsible for storing the results into the TaskCompletionSource.
</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.FromResult``1(``0)">
<summary>Creates an already completed <see cref="T:System.Threading.Tasks.Task`1"/> from the specified result.</summary>
<param name="result">The result from which to create the completed task.</param>
<returns>The completed task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Yield">
<summary>Creates an awaitable that asynchronously yields back to the current context when awaited.</summary>
<returns>
A context that, when awaited, will asynchronously transition back into the current context.
If SynchronizationContext.Current is non-null, that is treated as the current context.
Otherwise, TaskScheduler.Current is treated as the current context.
</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.AddPotentiallyUnwrappedExceptions(System.Collections.Generic.List{System.Exception}@,System.Exception)">
<summary>Adds the target exception to the list, initializing the list if it's null.</summary>
<param name="targetList">The list to which to add the exception and initialize if the list is null.</param>
<param name="exception">The exception to add, and unwrap if it's an aggregate.</param>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,275 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:AsyncExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsyncInternal(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads a maximum of count characters from the reader asynchronously and writes
the data to buffer, beginning at index.
</summary>
<param name="buffer">
When the operation completes, contains the specified character array with the
values between index and (index + count - 1) replaced by the characters read
from the current source.
</param>
<param name="count">
The maximum number of characters to read. If the end of the stream is reached
before count of characters is read into buffer, the current method returns.
</param>
<param name="index">The place in buffer at which to begin writing.</param>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadBlockAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads asynchronously a maximum of count characters from the current stream, and writes the
data to buffer, beginning at index.
</summary>
<param name="source">The source reader.</param>
<param name="buffer">
When this method returns, this parameter contains the specified character
array with the values between index and (index + count -1) replaced by the
characters read from the current source.
</param>
<param name="index">The position in buffer at which to begin writing.</param>
<param name="count">The maximum number of characters to read.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadLineAsync(System.IO.TextReader)">
<summary>
Reads a line of characters from the reader and returns the string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadToEndAsync(System.IO.TextReader)">
<summary>
Reads all characters from the current position to the end of the TextReader
and returns them as one string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter)">
<summary>Writes a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.TextWriter)">
<summary>
Clears all buffers for the current writer and causes any buffered data to
be written to the underlying device.
</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.GetResponseAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a web resource.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to . </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncExtensions.GetRequestStreamAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a object to use to write data.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.Net.ProtocolViolationException">The property is GET and the application writes to the stream. </exception>
<exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to . </exception>
<exception cref="T:System.ApplicationException">No write stream is available. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,630 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks</name>
</assembly>
<members>
<member name="T:AwaitExtensions">
<summary>
Provides extension methods for threading-related types.
</summary>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.Int32)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time in milliseconds for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.TimeSpan)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.GetAwaiter(System.Threading.Tasks.Task)">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.GetAwaiter``1(System.Threading.Tasks.Task{``0})">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<typeparam name="TResult">Specifies the type of data returned by the task.</typeparam>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait(System.Threading.Tasks.Task,System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait``1(System.Threading.Tasks.Task{``0},System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="T:Microsoft.ProgressEventHandler`1">
<summary>Event handler for progress reports.</summary>
<typeparam name="T">Specifies the type of data for the progress report.</typeparam>
<param name="sender">The sender of the report.</param>
<param name="value">The reported value.</param>
</member>
<member name="T:Microsoft.Progress`1">
<summary>
Provides an IProgress{T} that invokes callbacks for each reported progress value.
</summary>
<typeparam name="T">Specifies the type of the progress report value.</typeparam>
<remarks>
Any handler provided to the constructor or event handlers registered with
the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event are invoked through a
<see cref="T:System.Threading.SynchronizationContext"/> instance captured
when the instance is constructed. If there is no current SynchronizationContext
at the time of construction, the callbacks will be invoked on the ThreadPool.
</remarks>
</member>
<member name="F:Microsoft.Progress`1.m_synchronizationContext">
<summary>The synchronization context captured upon construction. This will never be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_handler">
<summary>The handler specified to the constructor. This may be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_invokeHandlers">
<summary>A cached delegate used to post invocation to the synchronization context.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/>.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor(System.Action{`0})">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/> with the specified callback.</summary>
<param name="handler">
A handler to invoke for each reported progress value. This handler will be invoked
in addition to any delegates registered with the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event.
</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="handler"/> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:Microsoft.Progress`1.OnReport(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.System#IProgress{T}#Report(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.InvokeHandlers(System.Object)">
<summary>Invokes the action and event callbacks.</summary>
<param name="state">The progress value.</param>
</member>
<member name="E:Microsoft.Progress`1.ProgressChanged">
<summary>Raised for each reported progress value.</summary>
<remarks>
Handlers registered with this event will be invoked on the
<see cref="T:System.Threading.SynchronizationContext"/> captured when the instance was constructed.
</remarks>
</member>
<member name="T:Microsoft.ProgressStatics">
<summary>Holds static values for <see cref="T:Microsoft.Progress`1"/>.</summary>
<remarks>This avoids one static instance per type T.</remarks>
</member>
<member name="F:Microsoft.ProgressStatics.DefaultContext">
<summary>A default synchronization context that targets the ThreadPool.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.ThrowAsync(System.Exception,System.Threading.SynchronizationContext)">
<summary>Throws the exception on the ThreadPool.</summary>
<param name="exception">The exception to propagate.</param>
<param name="targetContext">The target context on which to propagate the exception. Null to use the ThreadPool.</param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.m_configuredTaskAwaiter">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to await.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured
when BeginAwait is called; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.m_configuredTaskAwaiter">
<summary>The underlying awaitable on whose logic this awaitable relies.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.CONTINUE_ON_CAPTURED_CONTEXT_DEFAULT">
<summary>The default value to use for continueOnCapturedContext.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.InvalidOperationException_TaskNotCompleted">
<summary>Error message for GetAwaiter.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.#ctor(System.Threading.Tasks.Task)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task)">
<summary>
Fast checks for the end of an await operation to determine whether more needs to be done
prior to completing the await.
</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(System.Threading.Tasks.Task)">
<summary>Handles validations on tasks that aren't successfully completed.</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task)">
<summary>Throws an exception to handle a task that completed in a state other than RanToCompletion.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The awaited task.</param>
<param name="continuation">The action to invoke when the await operation completes.</param>
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.RunNoException(System.Action)">
<summary>Invokes the delegate in a try/catch that will propagate the exception asynchronously on the ThreadPool.</summary>
<param name="continuation"></param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsValidLocationForInlining">
<summary>Whether the current thread is appropriate for inlining the await continuation.</summary>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task`1"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable">
<summary>Provides an awaitable context for switching into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.GetAwaiter">
<summary>Gets an awaiter for this <see cref="T:Microsoft.Runtime.CompilerServices.YieldAwaitable"/>.</summary>
<returns>An awaiter for this awaitable.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter">
<summary>Provides an awaiter that switches into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.s_completed">
<summary>A completed task.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult">
<summary>Ends the await operation.</summary>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.IsCompleted">
<summary>Gets whether a yield is not required.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:System.Threading.Tasks.TaskEx">
<summary>Provides methods for creating and manipulating tasks.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action,System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the function.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="F:System.Threading.Tasks.TaskEx.s_preCompletedTask">
<summary>An already completed task.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAllCore``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task},System.Action{System.Threading.Tasks.Task[],System.Threading.Tasks.TaskCompletionSource{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<param name="setResultAction">
A callback invoked when all of the tasks complete successfully in the RanToCompletion state.
This callback is responsible for storing the results into the TaskCompletionSource.
</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.FromResult``1(``0)">
<summary>Creates an already completed <see cref="T:System.Threading.Tasks.Task`1"/> from the specified result.</summary>
<param name="result">The result from which to create the completed task.</param>
<returns>The completed task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Yield">
<summary>Creates an awaitable that asynchronously yields back to the current context when awaited.</summary>
<returns>
A context that, when awaited, will asynchronously transition back into the current context.
If SynchronizationContext.Current is non-null, that is treated as the current context.
Otherwise, TaskScheduler.Current is treated as the current context.
</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.AddPotentiallyUnwrappedExceptions(System.Collections.Generic.List{System.Exception}@,System.Exception)">
<summary>Adds the target exception to the list, initializing the list if it's null.</summary>
<param name="targetList">The list to which to add the exception and initialize if the list is null.</param>
<param name="exception">The exception to add, and unwrap if it's an aggregate.</param>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,275 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:AsyncExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsyncInternal(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads a maximum of count characters from the reader asynchronously and writes
the data to buffer, beginning at index.
</summary>
<param name="buffer">
When the operation completes, contains the specified character array with the
values between index and (index + count - 1) replaced by the characters read
from the current source.
</param>
<param name="count">
The maximum number of characters to read. If the end of the stream is reached
before count of characters is read into buffer, the current method returns.
</param>
<param name="index">The place in buffer at which to begin writing.</param>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadBlockAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads asynchronously a maximum of count characters from the current stream, and writes the
data to buffer, beginning at index.
</summary>
<param name="source">The source reader.</param>
<param name="buffer">
When this method returns, this parameter contains the specified character
array with the values between index and (index + count -1) replaced by the
characters read from the current source.
</param>
<param name="index">The position in buffer at which to begin writing.</param>
<param name="count">The maximum number of characters to read.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadLineAsync(System.IO.TextReader)">
<summary>
Reads a line of characters from the reader and returns the string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadToEndAsync(System.IO.TextReader)">
<summary>
Reads all characters from the current position to the end of the TextReader
and returns them as one string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter)">
<summary>Writes a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.TextWriter)">
<summary>
Clears all buffers for the current writer and causes any buffered data to
be written to the underlying device.
</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.GetResponseAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a web resource.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to . </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncExtensions.GetRequestStreamAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a object to use to write data.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.Net.ProtocolViolationException">The property is GET and the application writes to the stream. </exception>
<exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to . </exception>
<exception cref="T:System.ApplicationException">No write stream is available. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,630 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks</name>
</assembly>
<members>
<member name="T:AwaitExtensions">
<summary>
Provides extension methods for threading-related types.
</summary>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.Int32)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time in milliseconds for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.TimeSpan)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.GetAwaiter(System.Threading.Tasks.Task)">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.GetAwaiter``1(System.Threading.Tasks.Task{``0})">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<typeparam name="TResult">Specifies the type of data returned by the task.</typeparam>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait(System.Threading.Tasks.Task,System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait``1(System.Threading.Tasks.Task{``0},System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="T:Microsoft.ProgressEventHandler`1">
<summary>Event handler for progress reports.</summary>
<typeparam name="T">Specifies the type of data for the progress report.</typeparam>
<param name="sender">The sender of the report.</param>
<param name="value">The reported value.</param>
</member>
<member name="T:Microsoft.Progress`1">
<summary>
Provides an IProgress{T} that invokes callbacks for each reported progress value.
</summary>
<typeparam name="T">Specifies the type of the progress report value.</typeparam>
<remarks>
Any handler provided to the constructor or event handlers registered with
the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event are invoked through a
<see cref="T:System.Threading.SynchronizationContext"/> instance captured
when the instance is constructed. If there is no current SynchronizationContext
at the time of construction, the callbacks will be invoked on the ThreadPool.
</remarks>
</member>
<member name="F:Microsoft.Progress`1.m_synchronizationContext">
<summary>The synchronization context captured upon construction. This will never be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_handler">
<summary>The handler specified to the constructor. This may be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_invokeHandlers">
<summary>A cached delegate used to post invocation to the synchronization context.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/>.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor(System.Action{`0})">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/> with the specified callback.</summary>
<param name="handler">
A handler to invoke for each reported progress value. This handler will be invoked
in addition to any delegates registered with the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event.
</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="handler"/> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:Microsoft.Progress`1.OnReport(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.System#IProgress{T}#Report(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.InvokeHandlers(System.Object)">
<summary>Invokes the action and event callbacks.</summary>
<param name="state">The progress value.</param>
</member>
<member name="E:Microsoft.Progress`1.ProgressChanged">
<summary>Raised for each reported progress value.</summary>
<remarks>
Handlers registered with this event will be invoked on the
<see cref="T:System.Threading.SynchronizationContext"/> captured when the instance was constructed.
</remarks>
</member>
<member name="T:Microsoft.ProgressStatics">
<summary>Holds static values for <see cref="T:Microsoft.Progress`1"/>.</summary>
<remarks>This avoids one static instance per type T.</remarks>
</member>
<member name="F:Microsoft.ProgressStatics.DefaultContext">
<summary>A default synchronization context that targets the ThreadPool.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.ThrowAsync(System.Exception,System.Threading.SynchronizationContext)">
<summary>Throws the exception on the ThreadPool.</summary>
<param name="exception">The exception to propagate.</param>
<param name="targetContext">The target context on which to propagate the exception. Null to use the ThreadPool.</param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.m_configuredTaskAwaiter">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to await.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured
when BeginAwait is called; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.m_configuredTaskAwaiter">
<summary>The underlying awaitable on whose logic this awaitable relies.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.CONTINUE_ON_CAPTURED_CONTEXT_DEFAULT">
<summary>The default value to use for continueOnCapturedContext.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.InvalidOperationException_TaskNotCompleted">
<summary>Error message for GetAwaiter.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.#ctor(System.Threading.Tasks.Task)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task)">
<summary>
Fast checks for the end of an await operation to determine whether more needs to be done
prior to completing the await.
</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(System.Threading.Tasks.Task)">
<summary>Handles validations on tasks that aren't successfully completed.</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task)">
<summary>Throws an exception to handle a task that completed in a state other than RanToCompletion.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The awaited task.</param>
<param name="continuation">The action to invoke when the await operation completes.</param>
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.RunNoException(System.Action)">
<summary>Invokes the delegate in a try/catch that will propagate the exception asynchronously on the ThreadPool.</summary>
<param name="continuation"></param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsValidLocationForInlining">
<summary>Whether the current thread is appropriate for inlining the await continuation.</summary>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task`1"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable">
<summary>Provides an awaitable context for switching into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.GetAwaiter">
<summary>Gets an awaiter for this <see cref="T:Microsoft.Runtime.CompilerServices.YieldAwaitable"/>.</summary>
<returns>An awaiter for this awaitable.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter">
<summary>Provides an awaiter that switches into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.s_completed">
<summary>A completed task.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult">
<summary>Ends the await operation.</summary>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.IsCompleted">
<summary>Gets whether a yield is not required.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:System.Threading.Tasks.TaskEx">
<summary>Provides methods for creating and manipulating tasks.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action,System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the function.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="F:System.Threading.Tasks.TaskEx.s_preCompletedTask">
<summary>An already completed task.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAllCore``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task},System.Action{System.Threading.Tasks.Task[],System.Threading.Tasks.TaskCompletionSource{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<param name="setResultAction">
A callback invoked when all of the tasks complete successfully in the RanToCompletion state.
This callback is responsible for storing the results into the TaskCompletionSource.
</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.FromResult``1(``0)">
<summary>Creates an already completed <see cref="T:System.Threading.Tasks.Task`1"/> from the specified result.</summary>
<param name="result">The result from which to create the completed task.</param>
<returns>The completed task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Yield">
<summary>Creates an awaitable that asynchronously yields back to the current context when awaited.</summary>
<returns>
A context that, when awaited, will asynchronously transition back into the current context.
If SynchronizationContext.Current is non-null, that is treated as the current context.
Otherwise, TaskScheduler.Current is treated as the current context.
</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.AddPotentiallyUnwrappedExceptions(System.Collections.Generic.List{System.Exception}@,System.Exception)">
<summary>Adds the target exception to the list, initializing the list if it's null.</summary>
<param name="targetList">The list to which to add the exception and initialize if the list is null.</param>
<param name="exception">The exception to add, and unwrap if it's an aggregate.</param>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,275 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:AsyncExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsyncInternal(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads a maximum of count characters from the reader asynchronously and writes
the data to buffer, beginning at index.
</summary>
<param name="buffer">
When the operation completes, contains the specified character array with the
values between index and (index + count - 1) replaced by the characters read
from the current source.
</param>
<param name="count">
The maximum number of characters to read. If the end of the stream is reached
before count of characters is read into buffer, the current method returns.
</param>
<param name="index">The place in buffer at which to begin writing.</param>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadBlockAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads asynchronously a maximum of count characters from the current stream, and writes the
data to buffer, beginning at index.
</summary>
<param name="source">The source reader.</param>
<param name="buffer">
When this method returns, this parameter contains the specified character
array with the values between index and (index + count -1) replaced by the
characters read from the current source.
</param>
<param name="index">The position in buffer at which to begin writing.</param>
<param name="count">The maximum number of characters to read.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadLineAsync(System.IO.TextReader)">
<summary>
Reads a line of characters from the reader and returns the string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadToEndAsync(System.IO.TextReader)">
<summary>
Reads all characters from the current position to the end of the TextReader
and returns them as one string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter)">
<summary>Writes a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.TextWriter)">
<summary>
Clears all buffers for the current writer and causes any buffered data to
be written to the underlying device.
</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.GetResponseAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a web resource.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to . </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncExtensions.GetRequestStreamAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a object to use to write data.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.Net.ProtocolViolationException">The property is GET and the application writes to the stream. </exception>
<exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to . </exception>
<exception cref="T:System.ApplicationException">No write stream is available. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,630 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks</name>
</assembly>
<members>
<member name="T:AwaitExtensions">
<summary>
Provides extension methods for threading-related types.
</summary>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.Int32)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time in milliseconds for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.TimeSpan)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.GetAwaiter(System.Threading.Tasks.Task)">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.GetAwaiter``1(System.Threading.Tasks.Task{``0})">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<typeparam name="TResult">Specifies the type of data returned by the task.</typeparam>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait(System.Threading.Tasks.Task,System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait``1(System.Threading.Tasks.Task{``0},System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="T:Microsoft.ProgressEventHandler`1">
<summary>Event handler for progress reports.</summary>
<typeparam name="T">Specifies the type of data for the progress report.</typeparam>
<param name="sender">The sender of the report.</param>
<param name="value">The reported value.</param>
</member>
<member name="T:Microsoft.Progress`1">
<summary>
Provides an IProgress{T} that invokes callbacks for each reported progress value.
</summary>
<typeparam name="T">Specifies the type of the progress report value.</typeparam>
<remarks>
Any handler provided to the constructor or event handlers registered with
the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event are invoked through a
<see cref="T:System.Threading.SynchronizationContext"/> instance captured
when the instance is constructed. If there is no current SynchronizationContext
at the time of construction, the callbacks will be invoked on the ThreadPool.
</remarks>
</member>
<member name="F:Microsoft.Progress`1.m_synchronizationContext">
<summary>The synchronization context captured upon construction. This will never be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_handler">
<summary>The handler specified to the constructor. This may be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_invokeHandlers">
<summary>A cached delegate used to post invocation to the synchronization context.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/>.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor(System.Action{`0})">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/> with the specified callback.</summary>
<param name="handler">
A handler to invoke for each reported progress value. This handler will be invoked
in addition to any delegates registered with the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event.
</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="handler"/> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:Microsoft.Progress`1.OnReport(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.System#IProgress{T}#Report(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.InvokeHandlers(System.Object)">
<summary>Invokes the action and event callbacks.</summary>
<param name="state">The progress value.</param>
</member>
<member name="E:Microsoft.Progress`1.ProgressChanged">
<summary>Raised for each reported progress value.</summary>
<remarks>
Handlers registered with this event will be invoked on the
<see cref="T:System.Threading.SynchronizationContext"/> captured when the instance was constructed.
</remarks>
</member>
<member name="T:Microsoft.ProgressStatics">
<summary>Holds static values for <see cref="T:Microsoft.Progress`1"/>.</summary>
<remarks>This avoids one static instance per type T.</remarks>
</member>
<member name="F:Microsoft.ProgressStatics.DefaultContext">
<summary>A default synchronization context that targets the ThreadPool.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.ThrowAsync(System.Exception,System.Threading.SynchronizationContext)">
<summary>Throws the exception on the ThreadPool.</summary>
<param name="exception">The exception to propagate.</param>
<param name="targetContext">The target context on which to propagate the exception. Null to use the ThreadPool.</param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.m_configuredTaskAwaiter">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to await.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured
when BeginAwait is called; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.m_configuredTaskAwaiter">
<summary>The underlying awaitable on whose logic this awaitable relies.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.CONTINUE_ON_CAPTURED_CONTEXT_DEFAULT">
<summary>The default value to use for continueOnCapturedContext.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.InvalidOperationException_TaskNotCompleted">
<summary>Error message for GetAwaiter.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.#ctor(System.Threading.Tasks.Task)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task)">
<summary>
Fast checks for the end of an await operation to determine whether more needs to be done
prior to completing the await.
</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(System.Threading.Tasks.Task)">
<summary>Handles validations on tasks that aren't successfully completed.</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task)">
<summary>Throws an exception to handle a task that completed in a state other than RanToCompletion.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The awaited task.</param>
<param name="continuation">The action to invoke when the await operation completes.</param>
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.RunNoException(System.Action)">
<summary>Invokes the delegate in a try/catch that will propagate the exception asynchronously on the ThreadPool.</summary>
<param name="continuation"></param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsValidLocationForInlining">
<summary>Whether the current thread is appropriate for inlining the await continuation.</summary>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task`1"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable">
<summary>Provides an awaitable context for switching into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.GetAwaiter">
<summary>Gets an awaiter for this <see cref="T:Microsoft.Runtime.CompilerServices.YieldAwaitable"/>.</summary>
<returns>An awaiter for this awaitable.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter">
<summary>Provides an awaiter that switches into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.s_completed">
<summary>A completed task.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult">
<summary>Ends the await operation.</summary>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.IsCompleted">
<summary>Gets whether a yield is not required.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:System.Threading.Tasks.TaskEx">
<summary>Provides methods for creating and manipulating tasks.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action,System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the function.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="F:System.Threading.Tasks.TaskEx.s_preCompletedTask">
<summary>An already completed task.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAllCore``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task},System.Action{System.Threading.Tasks.Task[],System.Threading.Tasks.TaskCompletionSource{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<param name="setResultAction">
A callback invoked when all of the tasks complete successfully in the RanToCompletion state.
This callback is responsible for storing the results into the TaskCompletionSource.
</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.FromResult``1(``0)">
<summary>Creates an already completed <see cref="T:System.Threading.Tasks.Task`1"/> from the specified result.</summary>
<param name="result">The result from which to create the completed task.</param>
<returns>The completed task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Yield">
<summary>Creates an awaitable that asynchronously yields back to the current context when awaited.</summary>
<returns>
A context that, when awaited, will asynchronously transition back into the current context.
If SynchronizationContext.Current is non-null, that is treated as the current context.
Otherwise, TaskScheduler.Current is treated as the current context.
</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.AddPotentiallyUnwrappedExceptions(System.Collections.Generic.List{System.Exception}@,System.Exception)">
<summary>Adds the target exception to the list, initializing the list if it's null.</summary>
<param name="targetList">The list to which to add the exception and initialize if the list is null.</param>
<param name="exception">The exception to add, and unwrap if it's an aggregate.</param>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,141 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions.Phone</name>
</assembly>
<members>
<member name="T:AsyncPlatformExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncPlatformExtensions.DownloadStringTaskAsync(System.Net.WebClient,System.String)">
<summary>Downloads the resource with the specified URI as a string, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<returns>A Task that contains the downloaded string.</returns>
</member>
<member name="M:AsyncPlatformExtensions.DownloadStringTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Downloads the resource with the specified URI as a string, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<returns>A Task that contains the downloaded string.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenReadTaskAsync(System.Net.WebClient,System.String)">
<summary>Opens a readable stream for the data downloaded from a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenReadTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Opens a readable stream for the data downloaded from a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.String,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<param name="method">The HTTP method that should be used to open the stream.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.Uri,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<param name="method">The HTTP method that should be used to open the stream.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.Uri,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.String,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the data.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.Uri,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the data.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.GetUri(System.Net.WebClient,System.String)">
<summary>Converts a path to a Uri using the WebClient's logic.</summary>
<remarks>Based on WebClient's private GetUri method.</remarks>
</member>
<member name="M:AsyncPlatformExtensions.GetUri(System.Net.WebClient,System.Uri)">
<summary>Converts a path to a Uri using the WebClient's logic.</summary>
<remarks>Based on WebClient's private GetUri method.</remarks>
</member>
<member name="M:AsyncPlatformExtensions.InvokeAsync(System.Windows.Threading.Dispatcher,System.Action)">
<summary>Asynchronously invokes an Action on the Dispatcher.</summary>
<param name="dispatcher">The Dispatcher.</param>
<param name="action">The action to invoke.</param>
<returns>A Task that represents the execution of the action.</returns>
</member>
<member name="M:AsyncPlatformExtensions.InvokeAsync``1(System.Windows.Threading.Dispatcher,System.Func{``0})">
<summary>Asynchronously invokes an Action on the Dispatcher.</summary>
<param name="dispatcher">The Dispatcher.</param>
<param name="function">The function to invoke.</param>
<returns>A Task that represents the execution of the function.</returns>
</member>
<member name="T:VoidTaskResult">
<summary>Used with Task(of void)</summary>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,275 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:AsyncExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsyncInternal(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads a maximum of count characters from the reader asynchronously and writes
the data to buffer, beginning at index.
</summary>
<param name="buffer">
When the operation completes, contains the specified character array with the
values between index and (index + count - 1) replaced by the characters read
from the current source.
</param>
<param name="count">
The maximum number of characters to read. If the end of the stream is reached
before count of characters is read into buffer, the current method returns.
</param>
<param name="index">The place in buffer at which to begin writing.</param>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadBlockAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads asynchronously a maximum of count characters from the current stream, and writes the
data to buffer, beginning at index.
</summary>
<param name="source">The source reader.</param>
<param name="buffer">
When this method returns, this parameter contains the specified character
array with the values between index and (index + count -1) replaced by the
characters read from the current source.
</param>
<param name="index">The position in buffer at which to begin writing.</param>
<param name="count">The maximum number of characters to read.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadLineAsync(System.IO.TextReader)">
<summary>
Reads a line of characters from the reader and returns the string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadToEndAsync(System.IO.TextReader)">
<summary>
Reads all characters from the current position to the end of the TextReader
and returns them as one string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter)">
<summary>Writes a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.TextWriter)">
<summary>
Clears all buffers for the current writer and causes any buffered data to
be written to the underlying device.
</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.GetResponseAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a web resource.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to . </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncExtensions.GetRequestStreamAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a object to use to write data.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.Net.ProtocolViolationException">The property is GET and the application writes to the stream. </exception>
<exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to . </exception>
<exception cref="T:System.ApplicationException">No write stream is available. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,630 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks</name>
</assembly>
<members>
<member name="T:AwaitExtensions">
<summary>
Provides extension methods for threading-related types.
</summary>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.Int32)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time in milliseconds for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.TimeSpan)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.GetAwaiter(System.Threading.Tasks.Task)">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.GetAwaiter``1(System.Threading.Tasks.Task{``0})">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<typeparam name="TResult">Specifies the type of data returned by the task.</typeparam>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait(System.Threading.Tasks.Task,System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait``1(System.Threading.Tasks.Task{``0},System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="T:Microsoft.ProgressEventHandler`1">
<summary>Event handler for progress reports.</summary>
<typeparam name="T">Specifies the type of data for the progress report.</typeparam>
<param name="sender">The sender of the report.</param>
<param name="value">The reported value.</param>
</member>
<member name="T:Microsoft.Progress`1">
<summary>
Provides an IProgress{T} that invokes callbacks for each reported progress value.
</summary>
<typeparam name="T">Specifies the type of the progress report value.</typeparam>
<remarks>
Any handler provided to the constructor or event handlers registered with
the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event are invoked through a
<see cref="T:System.Threading.SynchronizationContext"/> instance captured
when the instance is constructed. If there is no current SynchronizationContext
at the time of construction, the callbacks will be invoked on the ThreadPool.
</remarks>
</member>
<member name="F:Microsoft.Progress`1.m_synchronizationContext">
<summary>The synchronization context captured upon construction. This will never be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_handler">
<summary>The handler specified to the constructor. This may be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_invokeHandlers">
<summary>A cached delegate used to post invocation to the synchronization context.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/>.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor(System.Action{`0})">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/> with the specified callback.</summary>
<param name="handler">
A handler to invoke for each reported progress value. This handler will be invoked
in addition to any delegates registered with the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event.
</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="handler"/> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:Microsoft.Progress`1.OnReport(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.System#IProgress{T}#Report(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.InvokeHandlers(System.Object)">
<summary>Invokes the action and event callbacks.</summary>
<param name="state">The progress value.</param>
</member>
<member name="E:Microsoft.Progress`1.ProgressChanged">
<summary>Raised for each reported progress value.</summary>
<remarks>
Handlers registered with this event will be invoked on the
<see cref="T:System.Threading.SynchronizationContext"/> captured when the instance was constructed.
</remarks>
</member>
<member name="T:Microsoft.ProgressStatics">
<summary>Holds static values for <see cref="T:Microsoft.Progress`1"/>.</summary>
<remarks>This avoids one static instance per type T.</remarks>
</member>
<member name="F:Microsoft.ProgressStatics.DefaultContext">
<summary>A default synchronization context that targets the ThreadPool.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.ThrowAsync(System.Exception,System.Threading.SynchronizationContext)">
<summary>Throws the exception on the ThreadPool.</summary>
<param name="exception">The exception to propagate.</param>
<param name="targetContext">The target context on which to propagate the exception. Null to use the ThreadPool.</param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.m_configuredTaskAwaiter">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to await.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured
when BeginAwait is called; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.m_configuredTaskAwaiter">
<summary>The underlying awaitable on whose logic this awaitable relies.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.CONTINUE_ON_CAPTURED_CONTEXT_DEFAULT">
<summary>The default value to use for continueOnCapturedContext.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.InvalidOperationException_TaskNotCompleted">
<summary>Error message for GetAwaiter.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.#ctor(System.Threading.Tasks.Task)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task)">
<summary>
Fast checks for the end of an await operation to determine whether more needs to be done
prior to completing the await.
</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(System.Threading.Tasks.Task)">
<summary>Handles validations on tasks that aren't successfully completed.</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task)">
<summary>Throws an exception to handle a task that completed in a state other than RanToCompletion.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The awaited task.</param>
<param name="continuation">The action to invoke when the await operation completes.</param>
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.RunNoException(System.Action)">
<summary>Invokes the delegate in a try/catch that will propagate the exception asynchronously on the ThreadPool.</summary>
<param name="continuation"></param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsValidLocationForInlining">
<summary>Whether the current thread is appropriate for inlining the await continuation.</summary>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task`1"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable">
<summary>Provides an awaitable context for switching into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.GetAwaiter">
<summary>Gets an awaiter for this <see cref="T:Microsoft.Runtime.CompilerServices.YieldAwaitable"/>.</summary>
<returns>An awaiter for this awaitable.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter">
<summary>Provides an awaiter that switches into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.s_completed">
<summary>A completed task.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult">
<summary>Ends the await operation.</summary>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.IsCompleted">
<summary>Gets whether a yield is not required.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:System.Threading.Tasks.TaskEx">
<summary>Provides methods for creating and manipulating tasks.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action,System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the function.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="F:System.Threading.Tasks.TaskEx.s_preCompletedTask">
<summary>An already completed task.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAllCore``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task},System.Action{System.Threading.Tasks.Task[],System.Threading.Tasks.TaskCompletionSource{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<param name="setResultAction">
A callback invoked when all of the tasks complete successfully in the RanToCompletion state.
This callback is responsible for storing the results into the TaskCompletionSource.
</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.FromResult``1(``0)">
<summary>Creates an already completed <see cref="T:System.Threading.Tasks.Task`1"/> from the specified result.</summary>
<param name="result">The result from which to create the completed task.</param>
<returns>The completed task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Yield">
<summary>Creates an awaitable that asynchronously yields back to the current context when awaited.</summary>
<returns>
A context that, when awaited, will asynchronously transition back into the current context.
If SynchronizationContext.Current is non-null, that is treated as the current context.
Otherwise, TaskScheduler.Current is treated as the current context.
</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.AddPotentiallyUnwrappedExceptions(System.Collections.Generic.List{System.Exception}@,System.Exception)">
<summary>Adds the target exception to the list, initializing the list if it's null.</summary>
<param name="targetList">The list to which to add the exception and initialize if the list is null.</param>
<param name="exception">The exception to add, and unwrap if it's an aggregate.</param>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,141 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions.Silverlight</name>
</assembly>
<members>
<member name="T:AsyncPlatformExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncPlatformExtensions.DownloadStringTaskAsync(System.Net.WebClient,System.String)">
<summary>Downloads the resource with the specified URI as a string, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<returns>A Task that contains the downloaded string.</returns>
</member>
<member name="M:AsyncPlatformExtensions.DownloadStringTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Downloads the resource with the specified URI as a string, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<returns>A Task that contains the downloaded string.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenReadTaskAsync(System.Net.WebClient,System.String)">
<summary>Opens a readable stream for the data downloaded from a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenReadTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Opens a readable stream for the data downloaded from a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.String,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<param name="method">The HTTP method that should be used to open the stream.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.Uri,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<param name="method">The HTTP method that should be used to open the stream.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.Uri,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.String,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the data.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.Uri,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the data.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.GetUri(System.Net.WebClient,System.String)">
<summary>Converts a path to a Uri using the WebClient's logic.</summary>
<remarks>Based on WebClient's private GetUri method.</remarks>
</member>
<member name="M:AsyncPlatformExtensions.GetUri(System.Net.WebClient,System.Uri)">
<summary>Converts a path to a Uri using the WebClient's logic.</summary>
<remarks>Based on WebClient's private GetUri method.</remarks>
</member>
<member name="M:AsyncPlatformExtensions.InvokeAsync(System.Windows.Threading.Dispatcher,System.Action)">
<summary>Asynchronously invokes an Action on the Dispatcher.</summary>
<param name="dispatcher">The Dispatcher.</param>
<param name="action">The action to invoke.</param>
<returns>A Task that represents the execution of the action.</returns>
</member>
<member name="M:AsyncPlatformExtensions.InvokeAsync``1(System.Windows.Threading.Dispatcher,System.Func{``0})">
<summary>Asynchronously invokes an Action on the Dispatcher.</summary>
<param name="dispatcher">The Dispatcher.</param>
<param name="function">The function to invoke.</param>
<returns>A Task that represents the execution of the function.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:VoidTaskResult">
<summary>Used with Task(of void)</summary>
</member>
</members>
</doc>

View file

@ -0,0 +1,275 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:AsyncExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsyncInternal(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads a maximum of count characters from the reader asynchronously and writes
the data to buffer, beginning at index.
</summary>
<param name="buffer">
When the operation completes, contains the specified character array with the
values between index and (index + count - 1) replaced by the characters read
from the current source.
</param>
<param name="count">
The maximum number of characters to read. If the end of the stream is reached
before count of characters is read into buffer, the current method returns.
</param>
<param name="index">The place in buffer at which to begin writing.</param>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadBlockAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads asynchronously a maximum of count characters from the current stream, and writes the
data to buffer, beginning at index.
</summary>
<param name="source">The source reader.</param>
<param name="buffer">
When this method returns, this parameter contains the specified character
array with the values between index and (index + count -1) replaced by the
characters read from the current source.
</param>
<param name="index">The position in buffer at which to begin writing.</param>
<param name="count">The maximum number of characters to read.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadLineAsync(System.IO.TextReader)">
<summary>
Reads a line of characters from the reader and returns the string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadToEndAsync(System.IO.TextReader)">
<summary>
Reads all characters from the current position to the end of the TextReader
and returns them as one string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter)">
<summary>Writes a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.TextWriter)">
<summary>
Clears all buffers for the current writer and causes any buffered data to
be written to the underlying device.
</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.GetResponseAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a web resource.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to . </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncExtensions.GetRequestStreamAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a object to use to write data.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.Net.ProtocolViolationException">The property is GET and the application writes to the stream. </exception>
<exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to . </exception>
<exception cref="T:System.ApplicationException">No write stream is available. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,630 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks</name>
</assembly>
<members>
<member name="T:AwaitExtensions">
<summary>
Provides extension methods for threading-related types.
</summary>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.Int32)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time in milliseconds for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.TimeSpan)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.GetAwaiter(System.Threading.Tasks.Task)">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.GetAwaiter``1(System.Threading.Tasks.Task{``0})">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<typeparam name="TResult">Specifies the type of data returned by the task.</typeparam>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait(System.Threading.Tasks.Task,System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait``1(System.Threading.Tasks.Task{``0},System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="T:Microsoft.ProgressEventHandler`1">
<summary>Event handler for progress reports.</summary>
<typeparam name="T">Specifies the type of data for the progress report.</typeparam>
<param name="sender">The sender of the report.</param>
<param name="value">The reported value.</param>
</member>
<member name="T:Microsoft.Progress`1">
<summary>
Provides an IProgress{T} that invokes callbacks for each reported progress value.
</summary>
<typeparam name="T">Specifies the type of the progress report value.</typeparam>
<remarks>
Any handler provided to the constructor or event handlers registered with
the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event are invoked through a
<see cref="T:System.Threading.SynchronizationContext"/> instance captured
when the instance is constructed. If there is no current SynchronizationContext
at the time of construction, the callbacks will be invoked on the ThreadPool.
</remarks>
</member>
<member name="F:Microsoft.Progress`1.m_synchronizationContext">
<summary>The synchronization context captured upon construction. This will never be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_handler">
<summary>The handler specified to the constructor. This may be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_invokeHandlers">
<summary>A cached delegate used to post invocation to the synchronization context.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/>.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor(System.Action{`0})">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/> with the specified callback.</summary>
<param name="handler">
A handler to invoke for each reported progress value. This handler will be invoked
in addition to any delegates registered with the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event.
</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="handler"/> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:Microsoft.Progress`1.OnReport(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.System#IProgress{T}#Report(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.InvokeHandlers(System.Object)">
<summary>Invokes the action and event callbacks.</summary>
<param name="state">The progress value.</param>
</member>
<member name="E:Microsoft.Progress`1.ProgressChanged">
<summary>Raised for each reported progress value.</summary>
<remarks>
Handlers registered with this event will be invoked on the
<see cref="T:System.Threading.SynchronizationContext"/> captured when the instance was constructed.
</remarks>
</member>
<member name="T:Microsoft.ProgressStatics">
<summary>Holds static values for <see cref="T:Microsoft.Progress`1"/>.</summary>
<remarks>This avoids one static instance per type T.</remarks>
</member>
<member name="F:Microsoft.ProgressStatics.DefaultContext">
<summary>A default synchronization context that targets the ThreadPool.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.ThrowAsync(System.Exception,System.Threading.SynchronizationContext)">
<summary>Throws the exception on the ThreadPool.</summary>
<param name="exception">The exception to propagate.</param>
<param name="targetContext">The target context on which to propagate the exception. Null to use the ThreadPool.</param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.m_configuredTaskAwaiter">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to await.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured
when BeginAwait is called; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.m_configuredTaskAwaiter">
<summary>The underlying awaitable on whose logic this awaitable relies.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.CONTINUE_ON_CAPTURED_CONTEXT_DEFAULT">
<summary>The default value to use for continueOnCapturedContext.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.InvalidOperationException_TaskNotCompleted">
<summary>Error message for GetAwaiter.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.#ctor(System.Threading.Tasks.Task)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task)">
<summary>
Fast checks for the end of an await operation to determine whether more needs to be done
prior to completing the await.
</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(System.Threading.Tasks.Task)">
<summary>Handles validations on tasks that aren't successfully completed.</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task)">
<summary>Throws an exception to handle a task that completed in a state other than RanToCompletion.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The awaited task.</param>
<param name="continuation">The action to invoke when the await operation completes.</param>
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.RunNoException(System.Action)">
<summary>Invokes the delegate in a try/catch that will propagate the exception asynchronously on the ThreadPool.</summary>
<param name="continuation"></param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsValidLocationForInlining">
<summary>Whether the current thread is appropriate for inlining the await continuation.</summary>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task`1"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable">
<summary>Provides an awaitable context for switching into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.GetAwaiter">
<summary>Gets an awaiter for this <see cref="T:Microsoft.Runtime.CompilerServices.YieldAwaitable"/>.</summary>
<returns>An awaiter for this awaitable.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter">
<summary>Provides an awaiter that switches into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.s_completed">
<summary>A completed task.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult">
<summary>Ends the await operation.</summary>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.IsCompleted">
<summary>Gets whether a yield is not required.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:System.Threading.Tasks.TaskEx">
<summary>Provides methods for creating and manipulating tasks.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action,System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the function.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="F:System.Threading.Tasks.TaskEx.s_preCompletedTask">
<summary>An already completed task.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAllCore``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task},System.Action{System.Threading.Tasks.Task[],System.Threading.Tasks.TaskCompletionSource{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<param name="setResultAction">
A callback invoked when all of the tasks complete successfully in the RanToCompletion state.
This callback is responsible for storing the results into the TaskCompletionSource.
</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.FromResult``1(``0)">
<summary>Creates an already completed <see cref="T:System.Threading.Tasks.Task`1"/> from the specified result.</summary>
<param name="result">The result from which to create the completed task.</param>
<returns>The completed task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Yield">
<summary>Creates an awaitable that asynchronously yields back to the current context when awaited.</summary>
<returns>
A context that, when awaited, will asynchronously transition back into the current context.
If SynchronizationContext.Current is non-null, that is treated as the current context.
Otherwise, TaskScheduler.Current is treated as the current context.
</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.AddPotentiallyUnwrappedExceptions(System.Collections.Generic.List{System.Exception}@,System.Exception)">
<summary>Adds the target exception to the list, initializing the list if it's null.</summary>
<param name="targetList">The list to which to add the exception and initialize if the list is null.</param>
<param name="exception">The exception to add, and unwrap if it's an aggregate.</param>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,275 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:AsyncExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsyncInternal(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads a maximum of count characters from the reader asynchronously and writes
the data to buffer, beginning at index.
</summary>
<param name="buffer">
When the operation completes, contains the specified character array with the
values between index and (index + count - 1) replaced by the characters read
from the current source.
</param>
<param name="count">
The maximum number of characters to read. If the end of the stream is reached
before count of characters is read into buffer, the current method returns.
</param>
<param name="index">The place in buffer at which to begin writing.</param>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadBlockAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads asynchronously a maximum of count characters from the current stream, and writes the
data to buffer, beginning at index.
</summary>
<param name="source">The source reader.</param>
<param name="buffer">
When this method returns, this parameter contains the specified character
array with the values between index and (index + count -1) replaced by the
characters read from the current source.
</param>
<param name="index">The position in buffer at which to begin writing.</param>
<param name="count">The maximum number of characters to read.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadLineAsync(System.IO.TextReader)">
<summary>
Reads a line of characters from the reader and returns the string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadToEndAsync(System.IO.TextReader)">
<summary>
Reads all characters from the current position to the end of the TextReader
and returns them as one string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter)">
<summary>Writes a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.TextWriter)">
<summary>
Clears all buffers for the current writer and causes any buffered data to
be written to the underlying device.
</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.GetResponseAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a web resource.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to . </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncExtensions.GetRequestStreamAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a object to use to write data.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.Net.ProtocolViolationException">The property is GET and the application writes to the stream. </exception>
<exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to . </exception>
<exception cref="T:System.ApplicationException">No write stream is available. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,630 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks</name>
</assembly>
<members>
<member name="T:AwaitExtensions">
<summary>
Provides extension methods for threading-related types.
</summary>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.Int32)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time in milliseconds for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.TimeSpan)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.GetAwaiter(System.Threading.Tasks.Task)">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.GetAwaiter``1(System.Threading.Tasks.Task{``0})">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<typeparam name="TResult">Specifies the type of data returned by the task.</typeparam>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait(System.Threading.Tasks.Task,System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait``1(System.Threading.Tasks.Task{``0},System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="T:Microsoft.ProgressEventHandler`1">
<summary>Event handler for progress reports.</summary>
<typeparam name="T">Specifies the type of data for the progress report.</typeparam>
<param name="sender">The sender of the report.</param>
<param name="value">The reported value.</param>
</member>
<member name="T:Microsoft.Progress`1">
<summary>
Provides an IProgress{T} that invokes callbacks for each reported progress value.
</summary>
<typeparam name="T">Specifies the type of the progress report value.</typeparam>
<remarks>
Any handler provided to the constructor or event handlers registered with
the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event are invoked through a
<see cref="T:System.Threading.SynchronizationContext"/> instance captured
when the instance is constructed. If there is no current SynchronizationContext
at the time of construction, the callbacks will be invoked on the ThreadPool.
</remarks>
</member>
<member name="F:Microsoft.Progress`1.m_synchronizationContext">
<summary>The synchronization context captured upon construction. This will never be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_handler">
<summary>The handler specified to the constructor. This may be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_invokeHandlers">
<summary>A cached delegate used to post invocation to the synchronization context.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/>.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor(System.Action{`0})">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/> with the specified callback.</summary>
<param name="handler">
A handler to invoke for each reported progress value. This handler will be invoked
in addition to any delegates registered with the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event.
</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="handler"/> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:Microsoft.Progress`1.OnReport(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.System#IProgress{T}#Report(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.InvokeHandlers(System.Object)">
<summary>Invokes the action and event callbacks.</summary>
<param name="state">The progress value.</param>
</member>
<member name="E:Microsoft.Progress`1.ProgressChanged">
<summary>Raised for each reported progress value.</summary>
<remarks>
Handlers registered with this event will be invoked on the
<see cref="T:System.Threading.SynchronizationContext"/> captured when the instance was constructed.
</remarks>
</member>
<member name="T:Microsoft.ProgressStatics">
<summary>Holds static values for <see cref="T:Microsoft.Progress`1"/>.</summary>
<remarks>This avoids one static instance per type T.</remarks>
</member>
<member name="F:Microsoft.ProgressStatics.DefaultContext">
<summary>A default synchronization context that targets the ThreadPool.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.ThrowAsync(System.Exception,System.Threading.SynchronizationContext)">
<summary>Throws the exception on the ThreadPool.</summary>
<param name="exception">The exception to propagate.</param>
<param name="targetContext">The target context on which to propagate the exception. Null to use the ThreadPool.</param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.m_configuredTaskAwaiter">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to await.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured
when BeginAwait is called; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.m_configuredTaskAwaiter">
<summary>The underlying awaitable on whose logic this awaitable relies.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.CONTINUE_ON_CAPTURED_CONTEXT_DEFAULT">
<summary>The default value to use for continueOnCapturedContext.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.InvalidOperationException_TaskNotCompleted">
<summary>Error message for GetAwaiter.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.#ctor(System.Threading.Tasks.Task)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task)">
<summary>
Fast checks for the end of an await operation to determine whether more needs to be done
prior to completing the await.
</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(System.Threading.Tasks.Task)">
<summary>Handles validations on tasks that aren't successfully completed.</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task)">
<summary>Throws an exception to handle a task that completed in a state other than RanToCompletion.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The awaited task.</param>
<param name="continuation">The action to invoke when the await operation completes.</param>
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.RunNoException(System.Action)">
<summary>Invokes the delegate in a try/catch that will propagate the exception asynchronously on the ThreadPool.</summary>
<param name="continuation"></param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsValidLocationForInlining">
<summary>Whether the current thread is appropriate for inlining the await continuation.</summary>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task`1"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable">
<summary>Provides an awaitable context for switching into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.GetAwaiter">
<summary>Gets an awaiter for this <see cref="T:Microsoft.Runtime.CompilerServices.YieldAwaitable"/>.</summary>
<returns>An awaiter for this awaitable.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter">
<summary>Provides an awaiter that switches into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.s_completed">
<summary>A completed task.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult">
<summary>Ends the await operation.</summary>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.IsCompleted">
<summary>Gets whether a yield is not required.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:System.Threading.Tasks.TaskEx">
<summary>Provides methods for creating and manipulating tasks.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action,System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the function.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="F:System.Threading.Tasks.TaskEx.s_preCompletedTask">
<summary>An already completed task.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAllCore``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task},System.Action{System.Threading.Tasks.Task[],System.Threading.Tasks.TaskCompletionSource{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<param name="setResultAction">
A callback invoked when all of the tasks complete successfully in the RanToCompletion state.
This callback is responsible for storing the results into the TaskCompletionSource.
</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.FromResult``1(``0)">
<summary>Creates an already completed <see cref="T:System.Threading.Tasks.Task`1"/> from the specified result.</summary>
<param name="result">The result from which to create the completed task.</param>
<returns>The completed task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Yield">
<summary>Creates an awaitable that asynchronously yields back to the current context when awaited.</summary>
<returns>
A context that, when awaited, will asynchronously transition back into the current context.
If SynchronizationContext.Current is non-null, that is treated as the current context.
Otherwise, TaskScheduler.Current is treated as the current context.
</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.AddPotentiallyUnwrappedExceptions(System.Collections.Generic.List{System.Exception}@,System.Exception)">
<summary>Adds the target exception to the list, initializing the list if it's null.</summary>
<param name="targetList">The list to which to add the exception and initialize if the list is null.</param>
<param name="exception">The exception to add, and unwrap if it's an aggregate.</param>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,141 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions.Phone</name>
</assembly>
<members>
<member name="T:AsyncPlatformExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncPlatformExtensions.DownloadStringTaskAsync(System.Net.WebClient,System.String)">
<summary>Downloads the resource with the specified URI as a string, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<returns>A Task that contains the downloaded string.</returns>
</member>
<member name="M:AsyncPlatformExtensions.DownloadStringTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Downloads the resource with the specified URI as a string, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI from which to download data.</param>
<returns>A Task that contains the downloaded string.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenReadTaskAsync(System.Net.WebClient,System.String)">
<summary>Opens a readable stream for the data downloaded from a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenReadTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Opens a readable stream for the data downloaded from a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.Uri)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.String,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<param name="method">The HTTP method that should be used to open the stream.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.OpenWriteTaskAsync(System.Net.WebClient,System.Uri,System.String)">
<summary>Opens a writeable stream for uploading data to a resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI for which the stream should be opened.</param>
<param name="method">The HTTP method that should be used to open the stream.</param>
<returns>A Task that contains the opened stream.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.Uri,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.String,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the data.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.UploadStringTaskAsync(System.Net.WebClient,System.Uri,System.String,System.String)">
<summary>Uploads data in a string to the specified resource, asynchronously.</summary>
<param name="webClient">The WebClient.</param>
<param name="address">The URI to which the data should be uploaded.</param>
<param name="method">The HTTP method that should be used to upload the data.</param>
<param name="data">The data to upload.</param>
<returns>A Task containing the data in the response from the upload.</returns>
</member>
<member name="M:AsyncPlatformExtensions.GetUri(System.Net.WebClient,System.String)">
<summary>Converts a path to a Uri using the WebClient's logic.</summary>
<remarks>Based on WebClient's private GetUri method.</remarks>
</member>
<member name="M:AsyncPlatformExtensions.GetUri(System.Net.WebClient,System.Uri)">
<summary>Converts a path to a Uri using the WebClient's logic.</summary>
<remarks>Based on WebClient's private GetUri method.</remarks>
</member>
<member name="M:AsyncPlatformExtensions.InvokeAsync(System.Windows.Threading.Dispatcher,System.Action)">
<summary>Asynchronously invokes an Action on the Dispatcher.</summary>
<param name="dispatcher">The Dispatcher.</param>
<param name="action">The action to invoke.</param>
<returns>A Task that represents the execution of the action.</returns>
</member>
<member name="M:AsyncPlatformExtensions.InvokeAsync``1(System.Windows.Threading.Dispatcher,System.Func{``0})">
<summary>Asynchronously invokes an Action on the Dispatcher.</summary>
<param name="dispatcher">The Dispatcher.</param>
<param name="function">The function to invoke.</param>
<returns>A Task that represents the execution of the function.</returns>
</member>
<member name="T:VoidTaskResult">
<summary>Used with Task(of void)</summary>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,275 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:AsyncExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsyncInternal(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads a maximum of count characters from the reader asynchronously and writes
the data to buffer, beginning at index.
</summary>
<param name="buffer">
When the operation completes, contains the specified character array with the
values between index and (index + count - 1) replaced by the characters read
from the current source.
</param>
<param name="count">
The maximum number of characters to read. If the end of the stream is reached
before count of characters is read into buffer, the current method returns.
</param>
<param name="index">The place in buffer at which to begin writing.</param>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadBlockAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads asynchronously a maximum of count characters from the current stream, and writes the
data to buffer, beginning at index.
</summary>
<param name="source">The source reader.</param>
<param name="buffer">
When this method returns, this parameter contains the specified character
array with the values between index and (index + count -1) replaced by the
characters read from the current source.
</param>
<param name="index">The position in buffer at which to begin writing.</param>
<param name="count">The maximum number of characters to read.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadLineAsync(System.IO.TextReader)">
<summary>
Reads a line of characters from the reader and returns the string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadToEndAsync(System.IO.TextReader)">
<summary>
Reads all characters from the current position to the end of the TextReader
and returns them as one string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter)">
<summary>Writes a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.TextWriter)">
<summary>
Clears all buffers for the current writer and causes any buffered data to
be written to the underlying device.
</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.GetResponseAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a web resource.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to . </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncExtensions.GetRequestStreamAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a object to use to write data.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.Net.ProtocolViolationException">The property is GET and the application writes to the stream. </exception>
<exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to . </exception>
<exception cref="T:System.ApplicationException">No write stream is available. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,630 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks</name>
</assembly>
<members>
<member name="T:AwaitExtensions">
<summary>
Provides extension methods for threading-related types.
</summary>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.Int32)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time in milliseconds for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.TimeSpan)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.GetAwaiter(System.Threading.Tasks.Task)">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.GetAwaiter``1(System.Threading.Tasks.Task{``0})">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<typeparam name="TResult">Specifies the type of data returned by the task.</typeparam>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait(System.Threading.Tasks.Task,System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait``1(System.Threading.Tasks.Task{``0},System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="T:Microsoft.ProgressEventHandler`1">
<summary>Event handler for progress reports.</summary>
<typeparam name="T">Specifies the type of data for the progress report.</typeparam>
<param name="sender">The sender of the report.</param>
<param name="value">The reported value.</param>
</member>
<member name="T:Microsoft.Progress`1">
<summary>
Provides an IProgress{T} that invokes callbacks for each reported progress value.
</summary>
<typeparam name="T">Specifies the type of the progress report value.</typeparam>
<remarks>
Any handler provided to the constructor or event handlers registered with
the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event are invoked through a
<see cref="T:System.Threading.SynchronizationContext"/> instance captured
when the instance is constructed. If there is no current SynchronizationContext
at the time of construction, the callbacks will be invoked on the ThreadPool.
</remarks>
</member>
<member name="F:Microsoft.Progress`1.m_synchronizationContext">
<summary>The synchronization context captured upon construction. This will never be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_handler">
<summary>The handler specified to the constructor. This may be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_invokeHandlers">
<summary>A cached delegate used to post invocation to the synchronization context.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/>.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor(System.Action{`0})">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/> with the specified callback.</summary>
<param name="handler">
A handler to invoke for each reported progress value. This handler will be invoked
in addition to any delegates registered with the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event.
</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="handler"/> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:Microsoft.Progress`1.OnReport(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.System#IProgress{T}#Report(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.InvokeHandlers(System.Object)">
<summary>Invokes the action and event callbacks.</summary>
<param name="state">The progress value.</param>
</member>
<member name="E:Microsoft.Progress`1.ProgressChanged">
<summary>Raised for each reported progress value.</summary>
<remarks>
Handlers registered with this event will be invoked on the
<see cref="T:System.Threading.SynchronizationContext"/> captured when the instance was constructed.
</remarks>
</member>
<member name="T:Microsoft.ProgressStatics">
<summary>Holds static values for <see cref="T:Microsoft.Progress`1"/>.</summary>
<remarks>This avoids one static instance per type T.</remarks>
</member>
<member name="F:Microsoft.ProgressStatics.DefaultContext">
<summary>A default synchronization context that targets the ThreadPool.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.ThrowAsync(System.Exception,System.Threading.SynchronizationContext)">
<summary>Throws the exception on the ThreadPool.</summary>
<param name="exception">The exception to propagate.</param>
<param name="targetContext">The target context on which to propagate the exception. Null to use the ThreadPool.</param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.m_configuredTaskAwaiter">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to await.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured
when BeginAwait is called; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.m_configuredTaskAwaiter">
<summary>The underlying awaitable on whose logic this awaitable relies.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.CONTINUE_ON_CAPTURED_CONTEXT_DEFAULT">
<summary>The default value to use for continueOnCapturedContext.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.InvalidOperationException_TaskNotCompleted">
<summary>Error message for GetAwaiter.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.#ctor(System.Threading.Tasks.Task)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task)">
<summary>
Fast checks for the end of an await operation to determine whether more needs to be done
prior to completing the await.
</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(System.Threading.Tasks.Task)">
<summary>Handles validations on tasks that aren't successfully completed.</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task)">
<summary>Throws an exception to handle a task that completed in a state other than RanToCompletion.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The awaited task.</param>
<param name="continuation">The action to invoke when the await operation completes.</param>
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.RunNoException(System.Action)">
<summary>Invokes the delegate in a try/catch that will propagate the exception asynchronously on the ThreadPool.</summary>
<param name="continuation"></param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsValidLocationForInlining">
<summary>Whether the current thread is appropriate for inlining the await continuation.</summary>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task`1"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable">
<summary>Provides an awaitable context for switching into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.GetAwaiter">
<summary>Gets an awaiter for this <see cref="T:Microsoft.Runtime.CompilerServices.YieldAwaitable"/>.</summary>
<returns>An awaiter for this awaitable.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter">
<summary>Provides an awaiter that switches into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.s_completed">
<summary>A completed task.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult">
<summary>Ends the await operation.</summary>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.IsCompleted">
<summary>Gets whether a yield is not required.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:System.Threading.Tasks.TaskEx">
<summary>Provides methods for creating and manipulating tasks.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action,System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the function.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="F:System.Threading.Tasks.TaskEx.s_preCompletedTask">
<summary>An already completed task.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAllCore``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task},System.Action{System.Threading.Tasks.Task[],System.Threading.Tasks.TaskCompletionSource{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<param name="setResultAction">
A callback invoked when all of the tasks complete successfully in the RanToCompletion state.
This callback is responsible for storing the results into the TaskCompletionSource.
</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.FromResult``1(``0)">
<summary>Creates an already completed <see cref="T:System.Threading.Tasks.Task`1"/> from the specified result.</summary>
<param name="result">The result from which to create the completed task.</param>
<returns>The completed task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Yield">
<summary>Creates an awaitable that asynchronously yields back to the current context when awaited.</summary>
<returns>
A context that, when awaited, will asynchronously transition back into the current context.
If SynchronizationContext.Current is non-null, that is treated as the current context.
Otherwise, TaskScheduler.Current is treated as the current context.
</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.AddPotentiallyUnwrappedExceptions(System.Collections.Generic.List{System.Exception}@,System.Exception)">
<summary>Adds the target exception to the list, initializing the list if it's null.</summary>
<param name="targetList">The list to which to add the exception and initialize if the list is null.</param>
<param name="exception">The exception to add, and unwrap if it's an aggregate.</param>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,275 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks.Extensions</name>
</assembly>
<members>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
<member name="T:AsyncExtensions">
<summary>
Provides asynchronous wrappers for .NET Framework operations.
</summary>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
</summary>
<returns>A Task that represents the asynchronous read.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer to read data into. </param>
<param name="offset">The byte offset in at which to begin reading. </param>
<param name="count">The maximum number of bytes to read. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException">The array length minus is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.IO.IOException">An asynchronous read was attempted past the end of the file. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<summary>
Writes asynchronously a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
</summary>
<returns>A Task that represents the asynchronous write.</returns>
<param name="source">The source.</param>
<param name="buffer">The buffer containing data to write to the current stream.</param>
<param name="offset">The zero-based byte offset in at which to begin copying bytes to the current stream.</param>
<param name="count">The maximum number of bytes to write. </param>
<param name="cancellationToken">The cancellation token.</param>
<exception cref="T:System.ArgumentException"> length minus <paramref name="offset" /> is less than <paramref name="count" />. </exception>
<exception cref="T:System.ArgumentNullException"> is null. </exception>
<exception cref="T:System.ArgumentOutOfRangeException"> or <paramref name="count" /> is negative. </exception>
<exception cref="T:System.NotSupportedException">The stream does not support writing. </exception>
<exception cref="T:System.ObjectDisposedException">The stream is closed. </exception>
<exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>
Flushes asynchronously the current stream.
</summary>
<returns>A Task that represents the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsync(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.CopyToAsyncInternal(System.IO.Stream,System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
<summary>
Reads all the bytes from the current stream and writes them to the destination stream.
</summary>
<param name="source">The source stream.</param>
<param name="destination">The stream that will contain the contents of the current stream.</param>
<param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 4096.</param>
<param name="cancellationToken">The cancellation token to use to cancel the asynchronous operation.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads a maximum of count characters from the reader asynchronously and writes
the data to buffer, beginning at index.
</summary>
<param name="buffer">
When the operation completes, contains the specified character array with the
values between index and (index + count - 1) replaced by the characters read
from the current source.
</param>
<param name="count">
The maximum number of characters to read. If the end of the stream is reached
before count of characters is read into buffer, the current method returns.
</param>
<param name="index">The place in buffer at which to begin writing.</param>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadBlockAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32)">
<summary>
Reads asynchronously a maximum of count characters from the current stream, and writes the
data to buffer, beginning at index.
</summary>
<param name="source">The source reader.</param>
<param name="buffer">
When this method returns, this parameter contains the specified character
array with the values between index and (index + count -1) replaced by the
characters read from the current source.
</param>
<param name="index">The position in buffer at which to begin writing.</param>
<param name="count">The maximum number of characters to read.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadLineAsync(System.IO.TextReader)">
<summary>
Reads a line of characters from the reader and returns the string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.ReadToEndAsync(System.IO.TextReader)">
<summary>
Reads all characters from the current position to the end of the TextReader
and returns them as one string asynchronously.
</summary>
<param name="source">the source reader.</param>
<returns>A Task that represents the asynchronous operation.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter)">
<summary>Writes a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.String)">
<summary>Writes a string followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The string to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char)">
<summary>Writes a char followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="value">The char to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[])">
<summary>Writes a char array followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.WriteLineAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32)">
<summary>Writes a subarray of characters followed by a line terminator asynchronously to a text stream.</summary>
<param name="target">The writer.</param>
<param name="buffer">The buffer to write.</param>
<param name="index">Starting index in the buffer.</param>
<param name="count">The number of characters to write.</param>
<returns>A Task representing the asynchronous write.</returns>
</member>
<member name="M:AsyncExtensions.FlushAsync(System.IO.TextWriter)">
<summary>
Clears all buffers for the current writer and causes any buffered data to
be written to the underlying device.
</summary>
<param name="target">The writer.</param>
<returns>A Task representing the asynchronous flush.</returns>
</member>
<member name="M:AsyncExtensions.GetResponseAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a web resource.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to . </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
<member name="M:AsyncExtensions.GetRequestStreamAsync(System.Net.WebRequest)">
<summary>Starts an asynchronous request for a object to use to write data.</summary>
<returns>Task that represents the asynchronous request.</returns>
<exception cref="T:System.Net.ProtocolViolationException">The property is GET and the application writes to the stream. </exception>
<exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to . </exception>
<exception cref="T:System.ApplicationException">No write stream is available. </exception>
<PermissionSet> <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" /> </PermissionSet>
<param name="source">The source.</param>
</member>
</members>
</doc>

View file

@ -0,0 +1,630 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Threading.Tasks</name>
</assembly>
<members>
<member name="T:AwaitExtensions">
<summary>
Provides extension methods for threading-related types.
</summary>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.Int32)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time in milliseconds for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.CancelAfter(System.Threading.CancellationTokenSource,System.TimeSpan)">
<summary>Cancels the <see cref="T:System.Threading.CancellationTokenSource"/> after the specified duration.</summary>
<param name="source">The CancellationTokenSource.</param>
<param name="dueTime">The due time for the source to be canceled.</param>
</member>
<member name="M:AwaitExtensions.GetAwaiter(System.Threading.Tasks.Task)">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.GetAwaiter``1(System.Threading.Tasks.Task{``0})">
<summary>Gets an awaiter used to await this <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<typeparam name="TResult">Specifies the type of data returned by the task.</typeparam>
<param name="task">The task to await.</param>
<returns>An awaiter instance.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait(System.Threading.Tasks.Task,System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="M:AwaitExtensions.ConfigureAwait``1(System.Threading.Tasks.Task{``0},System.Boolean)">
<summary>Creates and configures an awaitable object for awaiting the specified task.</summary>
<param name="task">The task to be awaited.</param>
<param name="continueOnCapturedContext">
true to automatic marshag back to the original call site's current SynchronizationContext
or TaskScheduler; otherwise, false.
</param>
<returns>The instance to be awaited.</returns>
</member>
<member name="T:Microsoft.ProgressEventHandler`1">
<summary>Event handler for progress reports.</summary>
<typeparam name="T">Specifies the type of data for the progress report.</typeparam>
<param name="sender">The sender of the report.</param>
<param name="value">The reported value.</param>
</member>
<member name="T:Microsoft.Progress`1">
<summary>
Provides an IProgress{T} that invokes callbacks for each reported progress value.
</summary>
<typeparam name="T">Specifies the type of the progress report value.</typeparam>
<remarks>
Any handler provided to the constructor or event handlers registered with
the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event are invoked through a
<see cref="T:System.Threading.SynchronizationContext"/> instance captured
when the instance is constructed. If there is no current SynchronizationContext
at the time of construction, the callbacks will be invoked on the ThreadPool.
</remarks>
</member>
<member name="F:Microsoft.Progress`1.m_synchronizationContext">
<summary>The synchronization context captured upon construction. This will never be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_handler">
<summary>The handler specified to the constructor. This may be null.</summary>
</member>
<member name="F:Microsoft.Progress`1.m_invokeHandlers">
<summary>A cached delegate used to post invocation to the synchronization context.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/>.</summary>
</member>
<member name="M:Microsoft.Progress`1.#ctor(System.Action{`0})">
<summary>Initializes the <see cref="T:Microsoft.Progress`1"/> with the specified callback.</summary>
<param name="handler">
A handler to invoke for each reported progress value. This handler will be invoked
in addition to any delegates registered with the <see cref="E:Microsoft.Progress`1.ProgressChanged"/> event.
</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="handler"/> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:Microsoft.Progress`1.OnReport(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.System#IProgress{T}#Report(`0)">
<summary>Reports a progress change.</summary>
<param name="value">The value of the updated progress.</param>
</member>
<member name="M:Microsoft.Progress`1.InvokeHandlers(System.Object)">
<summary>Invokes the action and event callbacks.</summary>
<param name="state">The progress value.</param>
</member>
<member name="E:Microsoft.Progress`1.ProgressChanged">
<summary>Raised for each reported progress value.</summary>
<remarks>
Handlers registered with this event will be invoked on the
<see cref="T:System.Threading.SynchronizationContext"/> captured when the instance was constructed.
</remarks>
</member>
<member name="T:Microsoft.ProgressStatics">
<summary>Holds static values for <see cref="T:Microsoft.Progress`1"/>.</summary>
<remarks>This avoids one static instance per type T.</remarks>
</member>
<member name="F:Microsoft.ProgressStatics.DefaultContext">
<summary>A default synchronization context that targets the ThreadPool.</summary>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.ThrowAsync(System.Exception,System.Threading.SynchronizationContext)">
<summary>Throws the exception on the ThreadPool.</summary>
<param name="exception">The exception to propagate.</param>
<param name="targetContext">The target context on which to propagate the exception. Null to use the ThreadPool.</param>
</member>
<member name="M:System.Runtime.CompilerServices.AsyncServices.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.m_configuredTaskAwaiter">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task,System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to await.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured
when BeginAwait is called; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1">
<summary>Provides an awaitable object that allows for configured awaits on <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.m_configuredTaskAwaiter">
<summary>The underlying awaitable on whose logic this awaitable relies.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.GetAwaiter">
<summary>Gets an awaiter for this awaitable.</summary>
<returns>The awaiter.</returns>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter">
<summary>Provides an awaiter for a <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.m_continueOnCapturedContext">
<summary>Whether to attempt marshaling back to the original context.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.#ctor(System.Threading.Tasks.Task{`0},System.Boolean)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter"/>.</summary>
<param name="task">The awaitable <see cref="T:System.Threading.Tasks.Task`1"/>.</param>
<param name="continueOnCapturedContext">
true to attempt to marshal the continuation back to the original context captured; otherwise, false.
</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.CONTINUE_ON_CAPTURED_CONTEXT_DEFAULT">
<summary>The default value to use for continueOnCapturedContext.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.InvalidOperationException_TaskNotCompleted">
<summary>Error message for GetAwaiter.</summary>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.#ctor(System.Threading.Tasks.Task)">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task"/>.</summary>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(System.Threading.Tasks.Task)">
<summary>
Fast checks for the end of an await operation to determine whether more needs to be done
prior to completing the await.
</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(System.Threading.Tasks.Task)">
<summary>Handles validations on tasks that aren't successfully completed.</summary>
<param name="task">The awaited task.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task)">
<summary>Throws an exception to handle a task that completed in a state other than RanToCompletion.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="task">The awaited task.</param>
<param name="continuation">The action to invoke when the await operation completes.</param>
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.RunNoException(System.Action)">
<summary>Invokes the delegate in a try/catch that will propagate the exception asynchronously on the ThreadPool.</summary>
<param name="continuation"></param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter.PrepareExceptionForRethrow(System.Exception)">
<summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
<param name="exc">The exception to prepare.</param>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter.IsValidLocationForInlining">
<summary>Whether the current thread is appropriate for inlining the await continuation.</summary>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1">
<summary>Provides an awaiter for awaiting a <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.m_task">
<summary>The task being awaited.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.#ctor(System.Threading.Tasks.Task{`0})">
<summary>Initializes the <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter`1"/>.</summary>
<param name="task">The <see cref="T:System.Threading.Tasks.Task`1"/> to be awaited.</param>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.OnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.UnsafeOnCompleted(System.Action)">
<summary>Schedules the continuation onto the <see cref="T:System.Threading.Tasks.Task"/> associated with this <see cref="T:Microsoft.Runtime.CompilerServices.TaskAwaiter"/>.</summary>
<param name="continuation">The action to invoke when the await operation completes.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.GetResult">
<summary>Ends the await on the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</summary>
<returns>The result of the completed <see cref="T:System.Threading.Tasks.Task`1"/>.</returns>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
<exception cref="T:System.InvalidOperationException">The task was not yet completed.</exception>
<exception cref="T:System.Threading.Tasks.TaskCanceledException">The task was canceled.</exception>
<exception cref="T:System.Exception">The task completed in a Faulted state.</exception>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.TaskAwaiter`1.IsCompleted">
<summary>Gets whether the task being awaited is completed.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
<exception cref="T:System.NullReferenceException">The awaiter was not properly initialized.</exception>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable">
<summary>Provides an awaitable context for switching into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.GetAwaiter">
<summary>Gets an awaiter for this <see cref="T:Microsoft.Runtime.CompilerServices.YieldAwaitable"/>.</summary>
<returns>An awaiter for this awaitable.</returns>
<remarks>This method is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter">
<summary>Provides an awaiter that switches into a target environment.</summary>
<remarks>This type is intended for compiler use only.</remarks>
</member>
<member name="F:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.s_completed">
<summary>A completed task.</summary>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.OnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.UnsafeOnCompleted(System.Action)">
<summary>Posts the <paramref name="continuation"/> back to the current context.</summary>
<param name="continuation">The action to invoke asynchronously.</param>
<exception cref="T:System.InvalidOperationException">The awaiter was not properly initialized.</exception>
</member>
<member name="M:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.GetResult">
<summary>Ends the await operation.</summary>
</member>
<member name="P:Microsoft.Runtime.CompilerServices.YieldAwaitable.YieldAwaiter.IsCompleted">
<summary>Gets whether a yield is not required.</summary>
<remarks>This property is intended for compiler user rather than use directly in code.</remarks>
</member>
<member name="T:System.Threading.Tasks.TaskEx">
<summary>Provides methods for creating and manipulating tasks.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Action,System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified action.</summary>
<param name="action">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="action"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{``0},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run(System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute.</param>
<param name="cancellationToken">The CancellationToken to use to request cancellation of this task.</param>
<returns>A task that represents the completion of the function.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}})">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The function to execute asynchronously.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Run``1(System.Func{System.Threading.Tasks.Task{``0}},System.Threading.CancellationToken)">
<summary>Creates a task that runs the specified function.</summary>
<param name="function">The action to execute.</param>
<param name="cancellationToken">The CancellationToken to use to cancel the task.</param>
<returns>A task that represents the completion of the action.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="function"/> argument is null.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.TimeSpan,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Delay(System.Int32,System.Threading.CancellationToken)">
<summary>Starts a Task that will complete after the specified due time.</summary>
<param name="dueTime">The delay in milliseconds before the returned task completes.</param>
<param name="cancellationToken">A CancellationToken that may be used to cancel the task before the due time occurs.</param>
<returns>The timed Task.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
The <paramref name="dueTime"/> argument must be non-negative or -1 and less than or equal to Int32.MaxValue.
</exception>
</member>
<member name="F:System.Threading.Tasks.TaskEx.s_preCompletedTask">
<summary>An already completed task.</summary>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAll``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<remarks>
If any of the provided Tasks faults, the returned Task will also fault, and its Exception will contain information
about all of the faulted tasks. If no Tasks fault but one or more Tasks is canceled, the returned
Task will also be canceled.
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAllCore``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task},System.Action{System.Threading.Tasks.Task[],System.Threading.Tasks.TaskCompletionSource{``0}})">
<summary>Creates a Task that will complete only when all of the provided collection of Tasks has completed.</summary>
<param name="tasks">The Tasks to monitor for completion.</param>
<param name="setResultAction">
A callback invoked when all of the tasks complete successfully in the RanToCompletion state.
This callback is responsible for storing the results into the TaskCompletionSource.
</param>
<returns>A Task that represents the completion of all of the provided tasks.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Threading.Tasks.Task[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Threading.Tasks.Task{``0}[])">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.WhenAny``1(System.Collections.Generic.IEnumerable{System.Threading.Tasks.Task{``0}})">
<summary>Creates a Task that will complete when any of the tasks in the provided collection completes.</summary>
<param name="tasks">The Tasks to be monitored.</param>
<returns>
A Task that represents the completion of any of the provided Tasks. The completed Task is this Task's result.
</returns>
<remarks>Any Tasks that fault will need to have their exceptions observed elsewhere.</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="tasks"/> argument is null.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="tasks"/> argument contains a null reference.</exception>
</member>
<member name="M:System.Threading.Tasks.TaskEx.FromResult``1(``0)">
<summary>Creates an already completed <see cref="T:System.Threading.Tasks.Task`1"/> from the specified result.</summary>
<param name="result">The result from which to create the completed task.</param>
<returns>The completed task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.Yield">
<summary>Creates an awaitable that asynchronously yields back to the current context when awaited.</summary>
<returns>
A context that, when awaited, will asynchronously transition back into the current context.
If SynchronizationContext.Current is non-null, that is treated as the current context.
Otherwise, TaskScheduler.Current is treated as the current context.
</returns>
</member>
<member name="M:System.Threading.Tasks.TaskEx.AddPotentiallyUnwrappedExceptions(System.Collections.Generic.List{System.Exception}@,System.Exception)">
<summary>Adds the target exception to the list, initializing the list if it's null.</summary>
<param name="targetList">The list to which to add the exception and initialize if the list is null.</param>
<param name="exception">The exception to add, and unwrap if it's an aggregate.</param>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.FromCancellation``1(System.Threading.CancellationToken)">
<summary>Returns a canceled task.</summary>
<typeparam name="TResult">Specifies the type of the result.</typeparam>
<param name="cancellationToken">The cancellation token.</param>
<returns>The canceled task.</returns>
</member>
<member name="M:System.Threading.Tasks.TaskServices.HandleEapCompletion``1(System.Threading.Tasks.TaskCompletionSource{``0},System.Boolean,System.ComponentModel.AsyncCompletedEventArgs,System.Func{``0},System.Action)">
<summary>
Completes the Task if the user state matches the TaskCompletionSource.
</summary>
<typeparam name="T">Specifies the type of data returned by the Task.</typeparam>
<param name="tcs">The TaskCompletionSource.</param>
<param name="e">The completion event arguments.</param>
<param name="requireMatch">Whether we require the tcs to match the e.UserState.</param>
<param name="getResult">A function that gets the result with which to complete the task.</param>
<param name="unregisterHandler">An action used to unregister work when the operaiton completes.</param>
</member>
</members>
</doc>