Photon Plugins API Documentation v5.0RC1

Properties | List of all members
Photon.Hive.Plugin.ITypedCallInfo< out out RequestType > Interface Template Reference
Inheritance diagram for Photon.Hive.Plugin.ITypedCallInfo< out out RequestType >:
Photon.Hive.Plugin.ICallInfo

Properties

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...
 
- Properties inherited from Photon.Hive.Plugin.ICallInfo
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...
 

Additional Inherited Members

- Public Member Functions inherited from Photon.Hive.Plugin.ICallInfo
void Continue ()
 
void Fail (string msg=null, Dictionary< byte, object > errorData=null)
 
bool StrictModeCheck (out string errorMsg)
 

Property Documentation

◆ AuthCookie

Dictionary<string, object> Photon.Hive.Plugin.ITypedCallInfo< out out RequestType >.AuthCookie
get

AuthCookie of the actor triggering the call.

◆ AuthResultsToken

object Photon.Hive.Plugin.ITypedCallInfo< out out RequestType >.AuthResultsToken
get

◆ Nickname

string Photon.Hive.Plugin.ITypedCallInfo< out out RequestType >.Nickname
get

NickName of the actor triggering the call.

◆ Request

RequestType Photon.Hive.Plugin.ITypedCallInfo< out out RequestType >.Request
get

◆ UserId

string Photon.Hive.Plugin.ITypedCallInfo< out out RequestType >.UserId
get

User ID of the actor triggering the call.