Enum SocketerClient.ProtocolDirection
Namespace: Microsoft.MixedReality.SpectatorView
Assembly: cs.temp.dll.dll
Syntax
public enum ProtocolDirection
Fields
Name | Description |
---|---|
Listener | Waits for the other Socketer to connect to it. TCP Socketers can still SendNetworkMessage after a connection. UDP Listeners are not able to SendNetworkMessage. Does not need to have a Host specified. Listeners may listen to multiple Senders. TCP Listeners, when calling SendNetworkMessage, will send to every connected Sender. |
Sender | Actively tries to connect/send to the other Socketer. TCP Socketers can still receive messages. UDP Senders cannot. Must have a Host specified. May only send to one listening Socketer. |