StreamInvocationMessage Constructors

Definition

Overloads

StreamInvocationMessage(String, String, Object[])

Initializes a new instance of the StreamInvocationMessage class.

StreamInvocationMessage(String, String, Object[], String[])

Initializes a new instance of the StreamInvocationMessage class.

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

Initializes a new instance of the StreamInvocationMessage class.

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

Parameters

invocationId
String

The invocation ID.

target
String

The target method name.

arguments
Object[]

The target method arguments.

Applies to

StreamInvocationMessage(String, String, Object[], String[])

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

Initializes a new instance of the StreamInvocationMessage class.

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

Parameters

invocationId
String

The invocation ID.

target
String

The target method name.

arguments
Object[]

The target method arguments.

streamIds
String[]

The target methods stream IDs.

Applies to