[This is preliminary documentation and is subject to change.]
Determines where an error happened in Server Viewer
communications. This helps determine what has already occurred, and
therefore what action must be taken. This is used by PersistateNetExceptions.
| C# |
public enum ErrorLocation
| Member | Description |
|---|---|
| NotSet |
The location of the error is unknown.
|
| ServerListening |
The exception occurred in the Server, as the server was listening for
a packet from the Viewer.
|
| ServerSending |
The exception occurred in the Server, while the Server was sending a
message to the Viewer.
|
| ServerWaiting |
The exception occurred in the Server, while the Server was waiting for
a response message from the viewer
|
| ServerReceiving |
The exception occurred in the Server, while the Server was dealing with
a message from the Viewer, but before a response was sent.
|
| ServerApplication |
The exception occurred in the Server application level code.
|
| ViewerSending |
The exception occurred in the Viewer, while the Viewer was sending a
message.
|
| ViewerReceiving |
The exception occurred in the Viewer, while the Viewer was receiving a
reply from the Server.
|
| ViewerWaiting |
The exception occurred in the Viewer, while the Viewer was waiting for
a response message from the Server
|
| ViewerApplication |
The exception occurred in the Viewer application level code.
|