ConnectionMessage Constructor (String, Object, IList<String>)
.NET Framework 4
Initializes a new instance of the ConnectionMessage class.
Namespace: Microsoft.AspNet.SignalR
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Sub New ( _
signal As String, _
value As Object, _
excludedSignals As IList(Of String) _
)
'Usage
Dim signal As String
Dim value As Object
Dim excludedSignals As IList(Of String)
Dim instance As New ConnectionMessage(signal, _
value, excludedSignals)
public ConnectionMessage(
string signal,
Object value,
IList<string> excludedSignals
)
public:
ConnectionMessage(
String^ signal,
Object^ value,
IList<String^>^ excludedSignals
)
new :
signal:string *
value:Object *
excludedSignals:IList<string> -> ConnectionMessage
public function ConnectionMessage(
signal : String,
value : Object,
excludedSignals : IList<String>
)
Parameters
- signal
Type: System.String
The signal.
- value
Type: System.Object
The payload of the message.
- excludedSignals
Type: System.Collections.Generic.IList<String>
The signals to exclude.