HubConnectionExtensions.On 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
On(HubConnection, String, Action)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。
public:
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Action ^ handler);
public static IDisposable On (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Action handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Action -> IDisposable
<Extension()>
Public Function On (hubConnection As HubConnection, methodName As String, handler As Action) As IDisposable
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Action
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On(HubConnection, String, Func<Task>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。
public:
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Func<System::Threading::Tasks::Task ^> ^ handler);
public static IDisposable On (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<System.Threading.Tasks.Task> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<System.Threading.Tasks.Task> -> IDisposable
<Extension()>
Public Function On (hubConnection As HubConnection, methodName As String, handler As Func(Of Task)) As IDisposable
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On(HubConnection, String, Type[], Func<Object[],Task>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。
public:
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, cli::array <Type ^> ^ parameterTypes, Func<cli::array <System::Object ^> ^, System::Threading::Tasks::Task ^> ^ handler);
public static IDisposable On (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Type[] parameterTypes, Func<object[],System.Threading.Tasks.Task> handler);
public static IDisposable On (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Type[] parameterTypes, Func<object?[],System.Threading.Tasks.Task> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Type[] * Func<obj[], System.Threading.Tasks.Task> -> IDisposable
<Extension()>
Public Function On (hubConnection As HubConnection, methodName As String, parameterTypes As Type(), handler As Func(Of Object(), Task)) As IDisposable
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- parameterTypes
- Type[]
中樞方法預期的參數類型。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6,T7,T8,TResult>(HubConnection, String, Func<T1,T2,T3,T4,T5,T6,T7,T8,TResult>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。 如果伺服器要求結果,則會傳回處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,T4,T5,T6,T7,T8,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,T6,T7,T8,TResult> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7, 'T8, 'Result> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6, T7, T8, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, T6, T7, T8, TResult)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
- T7
第七個引數類型。
- T8
第八個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Func<T1,T2,T3,T4,T5,T6,T7,T8,TResult>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6,T7,T8,TResult>(HubConnection, String, Func<T1,T2,T3,T4,T5,T6,T7,T8,Task<TResult>>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。 如果伺服器要求結果,則會傳回處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,T4,T5,T6,T7,T8,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,T6,T7,T8,System.Threading.Tasks.Task<TResult>> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7, 'T8, System.Threading.Tasks.Task<'Result>> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6, T7, T8, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, T6, T7, T8, Task(Of TResult))) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
- T7
第七個引數類型。
- T8
第八個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6,T7,T8>(HubConnection, String, Action<T1,T2,T3,T4,T5,T6,T7,T8>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Action<T1, T2, T3, T4, T5, T6, T7, T8> ^ handler);
public static IDisposable On<T1,T2,T3,T4,T5,T6,T7,T8> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Action<T1,T2,T3,T4,T5,T6,T7,T8> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Action<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7, 'T8> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6, T7, T8) (hubConnection As HubConnection, methodName As String, handler As Action(Of T1, T2, T3, T4, T5, T6, T7, T8)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
- T7
第七個引數類型。
- T8
第八個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Action<T1,T2,T3,T4,T5,T6,T7,T8>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6,T7,T8>(HubConnection, String, Func<T1,T2,T3,T4,T5,T6,T7,T8,Task>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Func<T1, T2, T3, T4, T5, T6, T7, T8, System::Threading::Tasks::Task ^> ^ handler);
public static IDisposable On<T1,T2,T3,T4,T5,T6,T7,T8> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,T6,T7,T8,System.Threading.Tasks.Task> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7, 'T8, System.Threading.Tasks.Task> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6, T7, T8) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, T6, T7, T8, Task)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
- T7
第七個引數類型。
- T8
第八個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6,T7,TResult>(HubConnection, String, Func<T1,T2,T3,T4,T5,T6,T7,Task<TResult>>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。 如果伺服器要求結果,則會傳回處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,T4,T5,T6,T7,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,T6,T7,System.Threading.Tasks.Task<TResult>> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7, System.Threading.Tasks.Task<'Result>> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6, T7, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, T6, T7, Task(Of TResult))) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
- T7
第七個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6,T7,TResult>(HubConnection, String, Func<T1,T2,T3,T4,T5,T6,T7,TResult>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,T4,T5,T6,T7,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,T6,T7,TResult> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7, 'Result> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6, T7, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, T6, T7, TResult)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
- T7
第七個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Func<T1,T2,T3,T4,T5,T6,T7,TResult>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6,T7>(HubConnection, String, Func<T1,T2,T3,T4,T5,T6,T7,Task>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Func<T1, T2, T3, T4, T5, T6, T7, System::Threading::Tasks::Task ^> ^ handler);
public static IDisposable On<T1,T2,T3,T4,T5,T6,T7> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,T6,T7,System.Threading.Tasks.Task> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7, System.Threading.Tasks.Task> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6, T7) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, T6, T7, Task)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
- T7
第七個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6,T7>(HubConnection, String, Action<T1,T2,T3,T4,T5,T6,T7>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Action<T1, T2, T3, T4, T5, T6, T7> ^ handler);
public static IDisposable On<T1,T2,T3,T4,T5,T6,T7> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Action<T1,T2,T3,T4,T5,T6,T7> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Action<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6, T7) (hubConnection As HubConnection, methodName As String, handler As Action(Of T1, T2, T3, T4, T5, T6, T7)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
- T7
第七個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Action<T1,T2,T3,T4,T5,T6,T7>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6,TResult>(HubConnection, String, Func<T1,T2,T3,T4,T5,T6,TResult>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,T4,T5,T6,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,T6,TResult> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'Result> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, T6, TResult)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Func<T1,T2,T3,T4,T5,T6,TResult>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6,TResult>(HubConnection, String, Func<T1,T2,T3,T4,T5,T6,Task<TResult>>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,T4,T5,T6,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,T6,System.Threading.Tasks.Task<TResult>> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, System.Threading.Tasks.Task<'Result>> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, T6, Task(Of TResult))) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6>(HubConnection, String, Func<T1,T2,T3,T4,T5,T6,Task>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Func<T1, T2, T3, T4, T5, T6, System::Threading::Tasks::Task ^> ^ handler);
public static IDisposable On<T1,T2,T3,T4,T5,T6> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,T6,System.Threading.Tasks.Task> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, System.Threading.Tasks.Task> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, T6, Task)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,T6>(HubConnection, String, Action<T1,T2,T3,T4,T5,T6>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Action<T1, T2, T3, T4, T5, T6> ^ handler);
public static IDisposable On<T1,T2,T3,T4,T5,T6> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Action<T1,T2,T3,T4,T5,T6> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Action<'T1, 'T2, 'T3, 'T4, 'T5, 'T6> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, T6) (hubConnection As HubConnection, methodName As String, handler As Action(Of T1, T2, T3, T4, T5, T6)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- T6
第六個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Action<T1,T2,T3,T4,T5,T6>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,TResult>(HubConnection, String, Func<T1,T2,T3,T4,T5,TResult>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,T4,T5,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,TResult> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, 'Result> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, TResult)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Func<T1,T2,T3,T4,T5,TResult>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5,TResult>(HubConnection, String, Func<T1,T2,T3,T4,T5,Task<TResult>>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。 如果伺服器要求結果,則會傳回處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,T4,T5,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,System.Threading.Tasks.Task<TResult>> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, System.Threading.Tasks.Task<'Result>> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, Task(Of TResult))) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5>(HubConnection, String, Func<T1,T2,T3,T4,T5,Task>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3, typename T4, typename T5>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Func<T1, T2, T3, T4, T5, System::Threading::Tasks::Task ^> ^ handler);
public static IDisposable On<T1,T2,T3,T4,T5> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,T5,System.Threading.Tasks.Task> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'T5, System.Threading.Tasks.Task> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, T5, Task)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,T5>(HubConnection, String, Action<T1,T2,T3,T4,T5>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3, typename T4, typename T5>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Action<T1, T2, T3, T4, T5> ^ handler);
public static IDisposable On<T1,T2,T3,T4,T5> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Action<T1,T2,T3,T4,T5> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Action<'T1, 'T2, 'T3, 'T4, 'T5> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, T5) (hubConnection As HubConnection, methodName As String, handler As Action(Of T1, T2, T3, T4, T5)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- T5
第五個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Action<T1,T2,T3,T4,T5>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,TResult>(HubConnection, String, Func<T1,T2,T3,T4,Task<TResult>>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。 如果伺服器要求結果,則會傳回處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,T4,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,System.Threading.Tasks.Task<TResult>> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, System.Threading.Tasks.Task<'Result>> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, Task(Of TResult))) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4,TResult>(HubConnection, String, Func<T1,T2,T3,T4,TResult>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。 如果伺服器要求結果,則會傳回處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,T4,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,TResult> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, 'Result> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, TResult)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Func<T1,T2,T3,T4,TResult>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4>(HubConnection, String, Func<T1,T2,T3,T4,Task>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3, typename T4>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Func<T1, T2, T3, T4, System::Threading::Tasks::Task ^> ^ handler);
public static IDisposable On<T1,T2,T3,T4> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,T4,System.Threading.Tasks.Task> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'T4, System.Threading.Tasks.Task> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, T4, Task)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,T4>(HubConnection, String, Action<T1,T2,T3,T4>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3, typename T4>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Action<T1, T2, T3, T4> ^ handler);
public static IDisposable On<T1,T2,T3,T4> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Action<T1,T2,T3,T4> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Action<'T1, 'T2, 'T3, 'T4> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, T4) (hubConnection As HubConnection, methodName As String, handler As Action(Of T1, T2, T3, T4)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- T4
第四個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Action<T1,T2,T3,T4>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,TResult>(HubConnection, String, Func<T1,T2,T3,Task<TResult>>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。 如果伺服器要求結果,則會傳回處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,System.Threading.Tasks.Task<TResult>> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, System.Threading.Tasks.Task<'Result>> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, Task(Of TResult))) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3,TResult>(HubConnection, String, Func<T1,T2,T3,TResult>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。 如果伺服器要求結果,則會傳回處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,T3,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,TResult> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, 'Result> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, TResult)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Func<T1,T2,T3,TResult>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3>(HubConnection, String, Func<T1,T2,T3,Task>)
註冊會在叫用具有指定方法名稱的中樞方法時叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Func<T1, T2, T3, System::Threading::Tasks::Task ^> ^ handler);
public static IDisposable On<T1,T2,T3> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,T3,System.Threading.Tasks.Task> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'T3, System.Threading.Tasks.Task> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, T3, Task)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,T3>(HubConnection, String, Action<T1,T2,T3>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。
public:
generic <typename T1, typename T2, typename T3>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Action<T1, T2, T3> ^ handler);
public static IDisposable On<T1,T2,T3> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Action<T1,T2,T3> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Action<'T1, 'T2, 'T3> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, T3) (hubConnection As HubConnection, methodName As String, handler As Action(Of T1, T2, T3)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- T3
第三個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Action<T1,T2,T3>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,TResult>(HubConnection, String, Func<T1,T2,TResult>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,TResult> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, 'Result> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, TResult)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Func<T1,T2,TResult>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2,TResult>(HubConnection, String, Func<T1,T2,Task<TResult>>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<T1,T2,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,System.Threading.Tasks.Task<TResult>> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, System.Threading.Tasks.Task<'Result>> -> IDisposable
<Extension()>
Public Function On(Of T1, T2, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, Task(Of TResult))) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2>(HubConnection, String, Action<T1,T2>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。
public:
generic <typename T1, typename T2>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Action<T1, T2> ^ handler);
public static IDisposable On<T1,T2> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Action<T1,T2> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Action<'T1, 'T2> -> IDisposable
<Extension()>
Public Function On(Of T1, T2) (hubConnection As HubConnection, methodName As String, handler As Action(Of T1, T2)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Action<T1,T2>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,T2>(HubConnection, String, Func<T1,T2,Task>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。
public:
generic <typename T1, typename T2>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Func<T1, T2, System::Threading::Tasks::Task ^> ^ handler);
public static IDisposable On<T1,T2> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,T2,System.Threading.Tasks.Task> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'T2, System.Threading.Tasks.Task> -> IDisposable
<Extension()>
Public Function On(Of T1, T2) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, T2, Task)) As IDisposable
類型參數
- T1
第一個引數類型。
- T2
第二個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,TResult>(HubConnection, String, Func<T1,TResult>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<T1,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,TResult> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, 'Result> -> IDisposable
<Extension()>
Public Function On(Of T1, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, TResult)) As IDisposable
類型參數
- T1
第一個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Func<T1,TResult>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1,TResult>(HubConnection, String, Func<T1,Task<TResult>>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<T1,TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,System.Threading.Tasks.Task<TResult>> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, System.Threading.Tasks.Task<'Result>> -> IDisposable
<Extension()>
Public Function On(Of T1, TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, Task(Of TResult))) As IDisposable
類型參數
- T1
第一個引數類型。
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1>(HubConnection, String, Func<T1,Task>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。
public:
generic <typename T1>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Func<T1, System::Threading::Tasks::Task ^> ^ handler);
public static IDisposable On<T1> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<T1,System.Threading.Tasks.Task> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'T1, System.Threading.Tasks.Task> -> IDisposable
<Extension()>
Public Function On(Of T1) (hubConnection As HubConnection, methodName As String, handler As Func(Of T1, Task)) As IDisposable
類型參數
- T1
第一個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<T1>(HubConnection, String, Action<T1>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。
public:
generic <typename T1>
[System::Runtime::CompilerServices::Extension]
static IDisposable ^ On(Microsoft::AspNetCore::SignalR::Client::HubConnection ^ hubConnection, System::String ^ methodName, Action<T1> ^ handler);
public static IDisposable On<T1> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Action<T1> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Action<'T1> -> IDisposable
<Extension()>
Public Function On(Of T1) (hubConnection As HubConnection, methodName As String, handler As Action(Of T1)) As IDisposable
類型參數
- T1
第一個引數類型。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Action<T1>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<TResult>(HubConnection, String, Type[], Func<Object[],Task<TResult>>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Type[] parameterTypes, Func<object?[],System.Threading.Tasks.Task<TResult>> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Type[] * Func<obj[], System.Threading.Tasks.Task<'Result>> -> IDisposable
<Extension()>
Public Function On(Of TResult) (hubConnection As HubConnection, methodName As String, parameterTypes As Type(), handler As Func(Of Object(), Task(Of TResult))) As IDisposable
類型參數
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- parameterTypes
- Type[]
中樞方法所預期的參數類型。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<TResult>(HubConnection, String, Func<TResult>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<TResult> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<'Result> -> IDisposable
<Extension()>
Public Function On(Of TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of TResult)) As IDisposable
類型參數
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
- handler
- Func<TResult>
叫用中樞方法時所引發的處理常式。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。
適用於
On<TResult>(HubConnection, String, Func<Task<TResult>>)
註冊叫用具有指定方法名稱的中樞方法時,將會叫用的處理常式。 如果伺服器要求結果,則傳回由處理常式傳回給伺服器的值。
public static IDisposable On<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, Func<System.Threading.Tasks.Task<TResult>> handler);
static member On : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * Func<System.Threading.Tasks.Task<'Result>> -> IDisposable
<Extension()>
Public Function On(Of TResult) (hubConnection As HubConnection, methodName As String, handler As Func(Of Task(Of TResult))) As IDisposable
類型參數
- TResult
處理常式傳回的傳回型別。
參數
- hubConnection
- HubConnection
中樞連線。
- methodName
- String
要定義的中樞方法名稱。
傳回
可處置以取消訂閱中樞方法的訂用帳戶。