InvocationMessage Constructores

Definición

Sobrecargas

InvocationMessage(String, Object[])

Inicializa una nueva instancia de la clase InvocationMessage.

InvocationMessage(String, String, Object[])

Inicializa una nueva instancia de la clase InvocationMessage.

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

Inicializa una nueva instancia de la clase InvocationMessage.

InvocationMessage(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

Inicializa una nueva instancia de la clase 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())

Parámetros

target
String

Nombre del método de destino.

arguments
Object[]

Argumentos del método de destino.

Se aplica a

InvocationMessage(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

Inicializa una nueva instancia de la clase 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())

Parámetros

invocationId
String

Identificador de invocación.

target
String

Nombre del método de destino.

arguments
Object[]

Argumentos del método de destino.

Se aplica a

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

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

Inicializa una nueva instancia de la clase 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())

Parámetros

invocationId
String

Identificador de invocación.

target
String

Nombre del método de destino.

arguments
Object[]

Argumentos del método de destino.

streamIds
String[]

Los métodos de destino transmiten identificadores.

Se aplica a