Photon Plugins API Documentation

Static Public Attributes | List of all members
Photon.Hive.Plugin.CallStatus Class Reference

Status of the ICallInfo argument passed to plugin callbacks. More...

Static Public Attributes

const byte New = 0
 The ICallInfo argument was not processed nor deferred. More...
 
const byte Deferred = 1
 The ICallInfo argument is deferred (i.e. Defer method was called). More...
 
const byte Succeded = 2
 The ICallInfo argument was successfully processed (i.e. Continue method was called). More...
 
const byte Failed = 3
 The ICallInfo argument "has failed" (i.e. Fail method was called). More...
 
const byte Canceled = 4
 The ICallInfo argument was canceled (i.e. Cancel method was called). More...
 

Detailed Description

Status of the ICallInfo argument passed to plugin callbacks.

Member Data Documentation

◆ Canceled

const byte Photon.Hive.Plugin.CallStatus.Canceled = 4
static

The ICallInfo argument was canceled (i.e. Cancel method was called).

◆ Deferred

const byte Photon.Hive.Plugin.CallStatus.Deferred = 1
static

The ICallInfo argument is deferred (i.e. Defer method was called).

◆ Failed

const byte Photon.Hive.Plugin.CallStatus.Failed = 3
static

The ICallInfo argument "has failed" (i.e. Fail method was called).

◆ New

const byte Photon.Hive.Plugin.CallStatus.New = 0
static

The ICallInfo argument was not processed nor deferred.

◆ Succeded

const byte Photon.Hive.Plugin.CallStatus.Succeded = 2
static

The ICallInfo argument was successfully processed (i.e. Continue method was called).