|
| RequestType | Request [get, set] |
| |
| string | UserId [get, set] |
| |
| string | Nickname [get, set] |
| |
| object? | AuthResultsToken [get] |
| |
| Dictionary< string, object >? | AuthCookie [get] |
| |
| int | ActorNr [get, set] |
| |
| RequestHandler | Handler [get, set] |
| |
| IOperationRequest | OperationRequest [get, set] |
| |
| byte | Status [get, protected set] |
| | Call processing status. For possible values, Photon.Hive.Plugin.CallStatus. More...
|
| |
| bool | IsNew [get] |
| |
| bool | IsPaused [get] |
| |
| bool | IsDeferred [get] |
| |
| bool | IsSucceeded [get] |
| |
| bool | IsFailed [get] |
| |
| bool | IsCanceled [get] |
| |
| bool | IsCancelled [get] |
| |
| bool | IsProcessed [get] |
| |
| HivePeer | Peer [get, set] |
| |
| SocketServer.SendParameters | SendParams [get, set] |
| |
| IOperationRequest | OperationRequest [get] |
| | The operation request triggering the callback call. More...
|
| |
| byte | Status [get] |
| | Gets status of current call. I.E. whether it is new, deffered, failed, succeded or canceled More...
|
| |
| bool | IsNew [get] |
| | Helper property to check if call is not processed nor deferred. More...
|
| |
| bool | IsDeferred [get] |
| | Helper property to check if call is deferred. More...
|
| |
| bool | IsSucceeded [get] |
| | Helper property to check if call was processed successfully (Continue() was called). More...
|
| |
| bool | IsFailed [get] |
| | Helper property to check if Fail() was called. More...
|
| |
| bool | IsCanceled [get] |
| | Helper property to check if Cancel() was called. More...
|
| |
| bool | IsCancelled [get] |
| |
| bool | IsProcessed [get] |
| | Helper property to check if the call was processed using any of the three methods: Continue, Cancel or Fail. More...
|
| |
| bool | IsPaused [get] |
| | Helper property to check if call is Paused More...
|
| |
| RequestType | Request [get] |
| |
| string | UserId [get] |
| | User ID of the actor triggering the call. More...
|
| |
| string | Nickname [get] |
| | NickName of the actor triggering the call. More...
|
| |
| object | AuthResultsToken [get] |
| |
| Dictionary< string, object > | AuthCookie [get] |
| | AuthCookie of the actor triggering the call. More...
|
| |