共用方式為


InvocationMessage 建構函式

定義

多載

InvocationMessage(String, Object[])

初始化 InvocationMessage 類別的新執行個體。

InvocationMessage(String, String, Object[])

初始化 InvocationMessage 類別的新執行個體。

InvocationMessage(String, String, Object[], String[])

初始化 InvocationMessage 類別的新執行個體。

InvocationMessage(String, Object[])

來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs

初始化 InvocationMessage 類別的新執行個體。

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

參數

target
String

目標方法名稱。

arguments
Object[]

目標方法引數。

適用於

InvocationMessage(String, String, Object[])

來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs

初始化 InvocationMessage 類別的新執行個體。

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

參數

invocationId
String

調用識別碼。

target
String

目標方法名稱。

arguments
Object[]

目標方法引數。

適用於

InvocationMessage(String, String, Object[], String[])

來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs
來源:
HubMethodInvocationMessage.cs

初始化 InvocationMessage 類別的新執行個體。

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

參數

invocationId
String

調用識別碼。

target
String

目標方法名稱。

arguments
Object[]

目標方法引數。

streamIds
String[]

目標方法資料流程識別碼。

適用於