Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2013-12-16 17:30:03 +0400
committerAtsushi Eno <atsushieno@gmail.com>2013-12-16 17:30:03 +0400
commit74a538f6725ebc83efda4bb07d5747e8a6359e19 (patch)
tree7c98de97c88c78b4aca4b25b36db310f82c26865 /Rx/NET/Source/packages/Microsoft.Bcl.Async.1.0.16/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.xml
parent50e7bdb4507f7e4c2aefb7772d57d9a80f4d42b0 (diff)
Import Official Rx 2.2 (3ebdd2e09991)HEADmaster
I made changes from the original source tree to match the older tree so that we don't have to make several changes to project tree generator. (There is actually no new sources in Rx so hopefully we can just reuse existing modifications in the tree).
Diffstat (limited to 'Rx/NET/Source/packages/Microsoft.Bcl.Async.1.0.16/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.xml')
-rw-r--r--Rx/NET/Source/packages/Microsoft.Bcl.Async.1.0.16/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.xml141
1 files changed, 141 insertions, 0 deletions
diff --git a/Rx/NET/Source/packages/Microsoft.Bcl.Async.1.0.16/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.xml b/Rx/NET/Source/packages/Microsoft.Bcl.Async.1.0.16/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.xml
new file mode 100644
index 0000000..515d703
--- /dev/null
+++ b/Rx/NET/Source/packages/Microsoft.Bcl.Async.1.0.16/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.xml
@@ -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>