The implementation class contains data that is sent to clients with PeerBase.SendEvent(IEventData,SendParameters). Implementors are EventData and SerializedEventData.
More...
The implementation class contains data that is sent to clients with PeerBase.SendEvent(IEventData,SendParameters). Implementors are EventData and SerializedEventData.
◆ Serialize()
◆ Code
byte Photon.SocketServer.IEventData.Code |
|
get |
◆ Parameters
Dictionary<byte, object> Photon.SocketServer.IEventData.Parameters |
|
get |
Gets the event parameters that will be sent to the client.
◆ this[byte parameterKey]
object Photon.SocketServer.IEventData.this[byte parameterKey] |
|
getset |
Gets or sets the paramter associated with the specified key.
- Parameters
-
parameterKey | The key of the parameter to get or set. |
- Returns
- The parameter associated with the specified key. If the specified key is not found, a get operation throws a KeyNotFoundException, and a set operation creates a new paramter with the specified key.
- Exceptions
-
System.NullReferenceException | The Parameters property has not been initialized. |