HubMethodInvocationMessage Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
HubMethodInvocationMessage(String, String, Object[]) |
Initializes a new instance of the HubMethodInvocationMessage class. |
HubMethodInvocationMessage(String, String, Object[], String[]) |
Initializes a new instance of the HubMethodInvocationMessage class. |
HubMethodInvocationMessage(String, String, Object[])
Initializes a new instance of the HubMethodInvocationMessage class.
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())
Parameters
- invocationId
- String
The invocation ID.
- target
- String
The target method name.
- arguments
- Object[]
The target method arguments.
Applies to
HubMethodInvocationMessage(String, String, Object[], String[])
Initializes a new instance of the HubMethodInvocationMessage class.
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())
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.