StreamInvocationMessage 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
| 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[])
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.StreamInvocationMessagePublic 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[])
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.StreamInvocationMessagePublic 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.