quite a bit, too much to summarize here
This commit is contained in:
parent
24845b6b52
commit
5f22d25559
336 changed files with 171740 additions and 351 deletions
70
packages/AsynchronousBridge.1.2.2/lib/Net40/AsyncBridge.NET40.XML
vendored
Normal file
70
packages/AsynchronousBridge.1.2.2/lib/Net40/AsyncBridge.NET40.XML
vendored
Normal file
|
@ -0,0 +1,70 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>AsyncBridge.NET40</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:AsyncBridge.AsyncHelper">
|
||||
<summary>
|
||||
A Helper class to run Asynchronous functions from synchronous ones
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.FireAndForget(System.Func{System.Threading.Tasks.Task},System.Action{System.Exception})">
|
||||
<summary>
|
||||
Runs a task with the "Fire and Forget" pattern using Task.Run,
|
||||
and unwraps and handles exceptions
|
||||
</summary>
|
||||
<param name="task">A function that returns the task to run</param>
|
||||
<param name="handle">Error handling action, null by default</param>
|
||||
</member>
|
||||
<member name="P:AsyncBridge.AsyncHelper.Wait">
|
||||
<summary>
|
||||
Creates a new AsyncBridge. This should always be used in
|
||||
conjunction with the using statement, to ensure it is disposed
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:AsyncBridge.AsyncHelper.AsyncBridge">
|
||||
<summary>
|
||||
A class to bridge synchronous asynchronous methods
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.AsyncBridge.#ctor">
|
||||
<summary>
|
||||
Constructs the AsyncBridge by capturing the current
|
||||
SynchronizationContext and replacing it with a new
|
||||
ExclusiveSynchronizationContext.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.AsyncBridge.Run(System.Threading.Tasks.Task,System.Action{System.Threading.Tasks.Task})">
|
||||
<summary>
|
||||
Execute's an async task with a void return type
|
||||
from a synchronous context
|
||||
</summary>
|
||||
<param name="task">Task to execute</param>
|
||||
<param name="callback">Optional callback</param>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.AsyncBridge.Run``1(System.Threading.Tasks.Task{``0},System.Action{System.Threading.Tasks.Task{``0}})">
|
||||
<summary>
|
||||
Execute's an async task with a T return type
|
||||
from a synchronous context
|
||||
</summary>
|
||||
<typeparam name="T">The type of the task</typeparam>
|
||||
<param name="task">Task to execute</param>
|
||||
<param name="callback">Optional callback</param>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.AsyncBridge.Run``1(System.Threading.Tasks.Task{``0},System.Action{``0})">
|
||||
<summary>
|
||||
Execute's an async task with a T return type
|
||||
from a synchronous context
|
||||
</summary>
|
||||
<typeparam name="T">The type of the task</typeparam>
|
||||
<param name="task">Task to execute</param>
|
||||
<param name="callback">The callback function that uses the result of the task</param>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.AsyncBridge.Dispose">
|
||||
<summary>
|
||||
Disposes the object
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
BIN
packages/AsynchronousBridge.1.2.2/lib/Net40/AsyncBridge.NET40.dll
vendored
Normal file
BIN
packages/AsynchronousBridge.1.2.2/lib/Net40/AsyncBridge.NET40.dll
vendored
Normal file
Binary file not shown.
15
packages/AsynchronousBridge.1.2.2/lib/Net40/AsyncBridge.NET40.dll.config
vendored
Normal file
15
packages/AsynchronousBridge.1.2.2/lib/Net40/AsyncBridge.NET40.dll.config
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.5.19.0" newVersion="2.5.19.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.5.19.0" newVersion="2.5.19.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
70
packages/AsynchronousBridge.1.2.2/lib/Net45/AsyncBridge.XML
vendored
Normal file
70
packages/AsynchronousBridge.1.2.2/lib/Net45/AsyncBridge.XML
vendored
Normal file
|
@ -0,0 +1,70 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>AsyncBridge</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:AsyncBridge.AsyncHelper">
|
||||
<summary>
|
||||
A Helper class to run Asynchronous functions from synchronous ones
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.FireAndForget(System.Func{System.Threading.Tasks.Task},System.Action{System.Exception})">
|
||||
<summary>
|
||||
Runs a task with the "Fire and Forget" pattern using Task.Run,
|
||||
and unwraps and handles exceptions
|
||||
</summary>
|
||||
<param name="task">A function that returns the task to run</param>
|
||||
<param name="handle">Error handling action, null by default</param>
|
||||
</member>
|
||||
<member name="P:AsyncBridge.AsyncHelper.Wait">
|
||||
<summary>
|
||||
Creates a new AsyncBridge. This should always be used in
|
||||
conjunction with the using statement, to ensure it is disposed
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:AsyncBridge.AsyncHelper.AsyncBridge">
|
||||
<summary>
|
||||
A class to bridge synchronous asynchronous methods
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.AsyncBridge.#ctor">
|
||||
<summary>
|
||||
Constructs the AsyncBridge by capturing the current
|
||||
SynchronizationContext and replacing it with a new
|
||||
ExclusiveSynchronizationContext.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.AsyncBridge.Run(System.Threading.Tasks.Task,System.Action{System.Threading.Tasks.Task})">
|
||||
<summary>
|
||||
Execute's an async task with a void return type
|
||||
from a synchronous context
|
||||
</summary>
|
||||
<param name="task">Task to execute</param>
|
||||
<param name="callback">Optional callback</param>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.AsyncBridge.Run``1(System.Threading.Tasks.Task{``0},System.Action{System.Threading.Tasks.Task{``0}})">
|
||||
<summary>
|
||||
Execute's an async task with a T return type
|
||||
from a synchronous context
|
||||
</summary>
|
||||
<typeparam name="T">The type of the task</typeparam>
|
||||
<param name="task">Task to execute</param>
|
||||
<param name="callback">Optional callback</param>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.AsyncBridge.Run``1(System.Threading.Tasks.Task{``0},System.Action{``0})">
|
||||
<summary>
|
||||
Execute's an async task with a T return type
|
||||
from a synchronous context
|
||||
</summary>
|
||||
<typeparam name="T">The type of the task</typeparam>
|
||||
<param name="task">Task to execute</param>
|
||||
<param name="callback">The callback function that uses the result of the task</param>
|
||||
</member>
|
||||
<member name="M:AsyncBridge.AsyncHelper.AsyncBridge.Dispose">
|
||||
<summary>
|
||||
Disposes the object
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
BIN
packages/AsynchronousBridge.1.2.2/lib/Net45/AsyncBridge.dll
vendored
Normal file
BIN
packages/AsynchronousBridge.1.2.2/lib/Net45/AsyncBridge.dll
vendored
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue