HubMethodInvocationMessage 构造函数

定义

重载

HubMethodInvocationMessage(String, String, Object[])

初始化 HubMethodInvocationMessage 类的新实例。

HubMethodInvocationMessage(String, String, Object[], String[])

初始化 HubMethodInvocationMessage 类的新实例。

HubMethodInvocationMessage(String, String, Object[])

Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs

初始化 HubMethodInvocationMessage 类的新实例。

protected:
 HubMethodInvocationMessage(System::String ^ invocationId, System::String ^ target, cli::array <System::Object ^> ^ arguments);
protected HubMethodInvocationMessage (string invocationId, string target, object[] arguments);
protected HubMethodInvocationMessage (string? invocationId, string target, object?[]? arguments);
protected HubMethodInvocationMessage (string? invocationId, string target, object?[] arguments);
new Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage : string * string * obj[] -> Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage
Protected Sub New (invocationId As String, target As String, arguments As Object())

参数

invocationId
String

调用 ID。

target
String

目标方法名称。

arguments
Object[]

目标方法参数。

适用于

HubMethodInvocationMessage(String, String, Object[], String[])

Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs
Source:
HubMethodInvocationMessage.cs

初始化 HubMethodInvocationMessage 类的新实例。

protected:
 HubMethodInvocationMessage(System::String ^ invocationId, System::String ^ target, cli::array <System::Object ^> ^ arguments, cli::array <System::String ^> ^ streamIds);
protected HubMethodInvocationMessage (string invocationId, string target, object[] arguments, string[] streamIds);
protected HubMethodInvocationMessage (string? invocationId, string target, object?[]? arguments, string[]? streamIds);
protected HubMethodInvocationMessage (string? invocationId, string target, object?[] arguments, string[]? streamIds);
new Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage : string * string * obj[] * string[] -> Microsoft.AspNetCore.SignalR.Protocol.HubMethodInvocationMessage
Protected Sub New (invocationId As String, target As String, arguments As Object(), streamIds As String())

参数

invocationId
String

调用 ID。

target
String

目标方法名称。

arguments
Object[]

目标方法参数。

streamIds
String[]

目标方法流 ID。

适用于