Sphyrnidae Common Library
2.0.1
Shared Utilities/Library
|
Public Member Functions | |
async Task< bool > | Send (string url, string method) |
Sends a message to the SignalR Hub More... | |
async Task< bool > | Send (string url, string method, object arg1) |
Sends a message to the SignalR Hub More... | |
async Task< bool > | Send (string url, string method, object arg1, object arg2) |
Sends a message to the SignalR Hub More... | |
async Task< bool > | Send (string url, string method, object arg1, object arg2, object arg3) |
Sends a message to the SignalR Hub More... | |
async Task< bool > | Send (string url, string method, object arg1, object arg2, object arg3, object arg4) |
Sends a message to the SignalR Hub More... | |
async Task< bool > | Send (string url, string method, object arg1, object arg2, object arg3, object arg4, object arg5) |
Sends a message to the SignalR Hub More... | |
async Task< bool > | Send (string url, string method, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6) |
Sends a message to the SignalR Hub More... | |
async Task< bool > | Send (string url, string method, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7) |
Sends a message to the SignalR Hub More... | |
async Task< bool > | Send (string url, string method, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8) |
Sends a message to the SignalR Hub More... | |
Task | Receive (string url, string context, Action method) |
Receives a message More... | |
Task | Receive< T > (string url, string context, Action< T > method) |
Receives a message More... | |
Task | Receive< T1, T2 > (string url, string context, Action< T1, T2 > method) |
Receives a message More... | |
Task | Receive< T1, T2, T3 > (string url, string context, Action< T1, T2, T3 > method) |
Receives a message More... | |
Task | Receive< T1, T2, T3, T4 > (string url, string context, Action< T1, T2, T3, T4 > method) |
Receives a message More... | |
Task | Receive< T1, T2, T3, T4, T5 > (string url, string context, Action< T1, T2, T3, T4, T5 > method) |
Receives a message More... | |
Task | Receive< T1, T2, T3, T4, T5, T6 > (string url, string context, Action< T1, T2, T3, T4, T5, T6 > method) |
Receives a message More... | |
Task | Receive< T1, T2, T3, T4, T5, T6, T7 > (string url, string context, Action< T1, T2, T3, T4, T5, T6, T7 > method) |
Receives a message More... | |
Task | Receive< T1, T2, T3, T4, T5, T6, T7, T8 > (string url, string context, Action< T1, T2, T3, T4, T5, T6, T7, T8 > method) |
Receives a message More... | |
Static Public Member Functions | |
static void | SetLogger (Action< string > strLogger, Action< Exception > exLogger) |
Protected Member Functions | |
void | LogStr (string message) |
void | LogEx (Exception ex) |
|
protected |
|
protected |
Task Sphyrnidae.Common.SignalR.SignalR.Receive | ( | string | url, |
string | context, | ||
Action | method | ||
) |
Receives a message
url | The name of the url to the hub |
context | The name of the context that was invoked |
method | A function to execute upon being called |
Implements Sphyrnidae.Common.SignalR.ISignalR.
Task Sphyrnidae.Common.SignalR.SignalR.Receive< T > | ( | string | url, |
string | context, | ||
Action< T > | method | ||
) |
Receives a message
T | The type of 1st parameter |
url | The name of the url to the hub |
context | The name of the context that was invoked |
method | A function to execute upon being called |
Implements Sphyrnidae.Common.SignalR.ISignalR.
Task Sphyrnidae.Common.SignalR.SignalR.Receive< T1, T2 > | ( | string | url, |
string | context, | ||
Action< T1, T2 > | method | ||
) |
Receives a message
T1 | The type of 1st parameter |
T2 | The type of 2nd parameter |
url | The name of the url to the hub |
context | The name of the context that was invoked |
method | A function to execute upon being called |
Implements Sphyrnidae.Common.SignalR.ISignalR.
Task Sphyrnidae.Common.SignalR.SignalR.Receive< T1, T2, T3 > | ( | string | url, |
string | context, | ||
Action< T1, T2, T3 > | method | ||
) |
Receives a message
T1 | The type of 1st parameter |
T2 | The type of 2nd parameter |
T3 | The type of 3rd parameter |
url | The name of the url to the hub |
context | The name of the context that was invoked |
method | A function to execute upon being called |
Implements Sphyrnidae.Common.SignalR.ISignalR.
Task Sphyrnidae.Common.SignalR.SignalR.Receive< T1, T2, T3, T4 > | ( | string | url, |
string | context, | ||
Action< T1, T2, T3, T4 > | method | ||
) |
Receives a message
T1 | The type of 1st parameter |
T2 | The type of 2nd parameter |
T3 | The type of 3rd parameter |
T4 | The type of 4th parameter |
url | The name of the url to the hub |
context | The name of the context that was invoked |
method | A function to execute upon being called |
Implements Sphyrnidae.Common.SignalR.ISignalR.
Task Sphyrnidae.Common.SignalR.SignalR.Receive< T1, T2, T3, T4, T5 > | ( | string | url, |
string | context, | ||
Action< T1, T2, T3, T4, T5 > | method | ||
) |
Receives a message
T1 | The type of 1st parameter |
T2 | The type of 2nd parameter |
T3 | The type of 3rd parameter |
T4 | The type of 4th parameter |
T5 | The type of 5th parameter |
url | The name of the url to the hub |
context | The name of the context that was invoked |
method | A function to execute upon being called |
Implements Sphyrnidae.Common.SignalR.ISignalR.
Task Sphyrnidae.Common.SignalR.SignalR.Receive< T1, T2, T3, T4, T5, T6 > | ( | string | url, |
string | context, | ||
Action< T1, T2, T3, T4, T5, T6 > | method | ||
) |
Receives a message
T1 | The type of 1st parameter |
T2 | The type of 2nd parameter |
T3 | The type of 3rd parameter |
T4 | The type of 4th parameter |
T5 | The type of 5th parameter |
T6 | The type of 6th parameter |
url | The name of the url to the hub |
context | The name of the context that was invoked |
method | A function to execute upon being called |
Implements Sphyrnidae.Common.SignalR.ISignalR.
Task Sphyrnidae.Common.SignalR.SignalR.Receive< T1, T2, T3, T4, T5, T6, T7 > | ( | string | url, |
string | context, | ||
Action< T1, T2, T3, T4, T5, T6, T7 > | method | ||
) |
Receives a message
T1 | The type of 1st parameter |
T2 | The type of 2nd parameter |
T3 | The type of 3rd parameter |
T4 | The type of 4th parameter |
T5 | The type of 5th parameter |
T6 | The type of 6th parameter |
T7 | The type of 7th parameter |
url | The name of the url to the hub |
context | The name of the context that was invoked |
method | A function to execute upon being called |
Implements Sphyrnidae.Common.SignalR.ISignalR.
Task Sphyrnidae.Common.SignalR.SignalR.Receive< T1, T2, T3, T4, T5, T6, T7, T8 > | ( | string | url, |
string | context, | ||
Action< T1, T2, T3, T4, T5, T6, T7, T8 > | method | ||
) |
Receives a message
T1 | The type of 1st parameter |
T2 | The type of 2nd parameter |
T3 | The type of 3rd parameter |
T4 | The type of 4th parameter |
T5 | The type of 5th parameter |
T6 | The type of 6th parameter |
T7 | The type of 7th parameter |
T8 | The type of 8th parameter |
url | The name of the url to the hub |
context | The name of the context that was invoked |
method | A function to execute upon being called |
Implements Sphyrnidae.Common.SignalR.ISignalR.
async Task<bool> Sphyrnidae.Common.SignalR.SignalR.Send | ( | string | url, |
string | method | ||
) |
Sends a message to the SignalR Hub
url | The name of the url to the hub |
method | The name of the method inside the hub to invoke |
Implements Sphyrnidae.Common.SignalR.ISignalR.
async Task<bool> Sphyrnidae.Common.SignalR.SignalR.Send | ( | string | url, |
string | method, | ||
object | arg1 | ||
) |
Sends a message to the SignalR Hub
url | The name of the url to the hub |
method | The name of the method inside the hub to invoke |
arg1 | The 1st argument (Optional) |
Implements Sphyrnidae.Common.SignalR.ISignalR.
async Task<bool> Sphyrnidae.Common.SignalR.SignalR.Send | ( | string | url, |
string | method, | ||
object | arg1, | ||
object | arg2 | ||
) |
Sends a message to the SignalR Hub
url | The name of the url to the hub |
method | The name of the method inside the hub to invoke |
arg1 | The 1st argument (Optional) |
arg2 | The 2nd argument (Optional) |
Implements Sphyrnidae.Common.SignalR.ISignalR.
async Task<bool> Sphyrnidae.Common.SignalR.SignalR.Send | ( | string | url, |
string | method, | ||
object | arg1, | ||
object | arg2, | ||
object | arg3 | ||
) |
Sends a message to the SignalR Hub
url | The name of the url to the hub |
method | The name of the method inside the hub to invoke |
arg1 | The 1st argument (Optional) |
arg2 | The 2nd argument (Optional) |
arg3 | The 3rd argument (Optional) |
Implements Sphyrnidae.Common.SignalR.ISignalR.
async Task<bool> Sphyrnidae.Common.SignalR.SignalR.Send | ( | string | url, |
string | method, | ||
object | arg1, | ||
object | arg2, | ||
object | arg3, | ||
object | arg4 | ||
) |
Sends a message to the SignalR Hub
url | The name of the url to the hub |
method | The name of the method inside the hub to invoke |
arg1 | The 1st argument (Optional) |
arg2 | The 2nd argument (Optional) |
arg3 | The 3rd argument (Optional) |
arg4 | The 4th argument (Optional) |
Implements Sphyrnidae.Common.SignalR.ISignalR.
async Task<bool> Sphyrnidae.Common.SignalR.SignalR.Send | ( | string | url, |
string | method, | ||
object | arg1, | ||
object | arg2, | ||
object | arg3, | ||
object | arg4, | ||
object | arg5 | ||
) |
Sends a message to the SignalR Hub
url | The name of the url to the hub |
method | The name of the method inside the hub to invoke |
arg1 | The 1st argument (Optional) |
arg2 | The 2nd argument (Optional) |
arg3 | The 3rd argument (Optional) |
arg4 | The 4th argument (Optional) |
arg5 | The 5th argument (Optional) |
Implements Sphyrnidae.Common.SignalR.ISignalR.
async Task<bool> Sphyrnidae.Common.SignalR.SignalR.Send | ( | string | url, |
string | method, | ||
object | arg1, | ||
object | arg2, | ||
object | arg3, | ||
object | arg4, | ||
object | arg5, | ||
object | arg6 | ||
) |
Sends a message to the SignalR Hub
url | The name of the url to the hub |
method | The name of the method inside the hub to invoke |
arg1 | The 1st argument (Optional) |
arg2 | The 2nd argument (Optional) |
arg3 | The 3rd argument (Optional) |
arg4 | The 4th argument (Optional) |
arg5 | The 5th argument (Optional) |
arg6 | The 6th argument (Optional) |
Implements Sphyrnidae.Common.SignalR.ISignalR.
async Task<bool> Sphyrnidae.Common.SignalR.SignalR.Send | ( | string | url, |
string | method, | ||
object | arg1, | ||
object | arg2, | ||
object | arg3, | ||
object | arg4, | ||
object | arg5, | ||
object | arg6, | ||
object | arg7 | ||
) |
Sends a message to the SignalR Hub
url | The name of the url to the hub |
method | The name of the method inside the hub to invoke |
arg1 | The 1st argument (Optional) |
arg2 | The 2nd argument (Optional) |
arg3 | The 3rd argument (Optional) |
arg4 | The 4th argument (Optional) |
arg5 | The 5th argument (Optional) |
arg6 | The 6th argument (Optional) |
arg7 | The 7th argument (Optional) |
Implements Sphyrnidae.Common.SignalR.ISignalR.
async Task<bool> Sphyrnidae.Common.SignalR.SignalR.Send | ( | string | url, |
string | method, | ||
object | arg1, | ||
object | arg2, | ||
object | arg3, | ||
object | arg4, | ||
object | arg5, | ||
object | arg6, | ||
object | arg7, | ||
object | arg8 | ||
) |
Sends a message to the SignalR Hub
url | The name of the url to the hub |
method | The name of the method inside the hub to invoke |
arg1 | The 1st argument (Optional) |
arg2 | The 2nd argument (Optional) |
arg3 | The 3rd argument (Optional) |
arg4 | The 4th argument (Optional) |
arg5 | The 5th argument (Optional) |
arg6 | The 6th argument (Optional) |
arg7 | The 7th argument (Optional) |
arg8 | The 8th argument (Optional) |
Implements Sphyrnidae.Common.SignalR.ISignalR.
|
static |