ConnectionMessage Structure
.NET Framework 4
A message sent to one or more connections.
Namespace: Microsoft.AspNet.SignalR
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Structure ConnectionMessage
'Usage
Dim instance As ConnectionMessage
public struct ConnectionMessage
public value class ConnectionMessage
[<SealedAttribute>]
type ConnectionMessage = struct end
JScript suports the use of structures, but not the declaration of new ones.
The ConnectionMessage type exposes the following members.
Constructors
Name | Description | |
---|---|---|
ConnectionMessage(String, Object) | Initializes a new instance of the ConnectionMessage class. | |
ConnectionMessage(String, Object, IList<String>) | Initializes a new instance of the ConnectionMessage class. |
Top
Properties
Name | Description | |
---|---|---|
ExcludedSignals | Represents a list of signals that should be used to filter what connections receive this message. | |
Signal | The signal to this message should be sent to. Connections subscribed to this signal will receive the message payload. | |
Value | The payload of the message. |
Top
Methods
Name | Description | |
---|---|---|
Equals | (Inherited from ValueType.) | |
GetHashCode | (Inherited from ValueType.) | |
GetType | (Inherited from Object.) | |
ToString | (Inherited from ValueType.) |
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.