Поделиться через


HubInvocationContext Конструкторы

Определение

Перегрузки

HubInvocationContext(HubCallerContext, String, Object[])
Устаревшие..

Создает новый экземпляр класса HubInvocationContext.

HubInvocationContext(HubCallerContext, IServiceProvider, Hub, MethodInfo, IReadOnlyList<Object>)

Создает новый экземпляр класса HubInvocationContext.

HubInvocationContext(HubCallerContext, String, Object[])

Внимание!

This constructor is obsolete and will be removed in a future version. The recommended alternative is to use the other constructor.

Создает новый экземпляр класса HubInvocationContext.

public:
 HubInvocationContext(Microsoft::AspNetCore::SignalR::HubCallerContext ^ context, System::String ^ hubMethodName, cli::array <System::Object ^> ^ hubMethodArguments);
public HubInvocationContext (Microsoft.AspNetCore.SignalR.HubCallerContext context, string hubMethodName, object[] hubMethodArguments);
[System.Obsolete("This constructor is obsolete and will be removed in a future version. The recommended alternative is to use the other constructor.")]
public HubInvocationContext (Microsoft.AspNetCore.SignalR.HubCallerContext context, string hubMethodName, object?[] hubMethodArguments);
new Microsoft.AspNetCore.SignalR.HubInvocationContext : Microsoft.AspNetCore.SignalR.HubCallerContext * string * obj[] -> Microsoft.AspNetCore.SignalR.HubInvocationContext
[<System.Obsolete("This constructor is obsolete and will be removed in a future version. The recommended alternative is to use the other constructor.")>]
new Microsoft.AspNetCore.SignalR.HubInvocationContext : Microsoft.AspNetCore.SignalR.HubCallerContext * string * obj[] -> Microsoft.AspNetCore.SignalR.HubInvocationContext
Public Sub New (context As HubCallerContext, hubMethodName As String, hubMethodArguments As Object())

Параметры

context
HubCallerContext

Контекст для активного подключения концентратора и вызывающего абонента.

hubMethodName
String

Имя вызываемого метода концентратора.

hubMethodArguments
Object[]

Аргументы, предоставленные клиентом.

Атрибуты

Применяется к

HubInvocationContext(HubCallerContext, IServiceProvider, Hub, MethodInfo, IReadOnlyList<Object>)

Исходный код:
HubInvocationContext.cs

Создает новый экземпляр класса HubInvocationContext.

public:
 HubInvocationContext(Microsoft::AspNetCore::SignalR::HubCallerContext ^ context, IServiceProvider ^ serviceProvider, Microsoft::AspNetCore::SignalR::Hub ^ hub, System::Reflection::MethodInfo ^ hubMethod, System::Collections::Generic::IReadOnlyList<System::Object ^> ^ hubMethodArguments);
public HubInvocationContext (Microsoft.AspNetCore.SignalR.HubCallerContext context, IServiceProvider serviceProvider, Microsoft.AspNetCore.SignalR.Hub hub, System.Reflection.MethodInfo hubMethod, System.Collections.Generic.IReadOnlyList<object?> hubMethodArguments);
new Microsoft.AspNetCore.SignalR.HubInvocationContext : Microsoft.AspNetCore.SignalR.HubCallerContext * IServiceProvider * Microsoft.AspNetCore.SignalR.Hub * System.Reflection.MethodInfo * System.Collections.Generic.IReadOnlyList<obj> -> Microsoft.AspNetCore.SignalR.HubInvocationContext
Public Sub New (context As HubCallerContext, serviceProvider As IServiceProvider, hub As Hub, hubMethod As MethodInfo, hubMethodArguments As IReadOnlyList(Of Object))

Параметры

context
HubCallerContext

Контекст для активного подключения концентратора и вызывающего абонента.

serviceProvider
IServiceProvider

Специфичный IServiceProvider для область вызова этого метода концентратора.

hub
Hub

Экземпляр концентратора.

hubMethod
MethodInfo

Для MethodInfo вызываемого метода концентратора.

hubMethodArguments
IReadOnlyList<Object>

Аргументы, предоставленные клиентом.

Применяется к