enum classafFancomSapi::SpeechTokenContext

sys::Obj
  sys::Enum
    afFancomSapi::SpeechTokenContext

@Serializable { simple=true }

Lists the context in which the code managing the newly created object runs.

http://msdn.microsoft.com/en-us/library/ee125216%28v=vs.85%29.aspx

STCAll

Source

const static SpeechTokenContext STCAll := ...

Creates and manages objects for all class contexts.

Value is 23 (0x17)

STCInprocHandler

Source

const static SpeechTokenContext STCInprocHandler := ...

Creates and manages objects as an in process (InProc) handler. This is a DLL running in the client process and implements client-side structures of this class when instances are accessed remotely.

Value is 2 (0x2)

STCInprocServer

Source

const static SpeechTokenContext STCInprocServer := ...

Creates and manages objects in the same process as the caller of the function.

Value is 1 (0x1)

STCLocalServer

Source

const static SpeechTokenContext STCLocalServer := ...

Creates and manages objects that are loaded in a separate process space; that is, it runs on same computer but in a different process.

Value is 4 (0x4)

STCRemoteServer

Source

const static SpeechTokenContext STCRemoteServer := ...

Creates and manages objects on a remote machine context.

Value is 16 (0x10)

fromStr

Source

static new fromStr(Str name, Bool checked := true)

Return the SpeechTokenContext instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.

fromVariant

Source

static SpeechTokenContext fromVariant(Variant variant)

toFancom

Source

Variant toFancom()

vals

Source

const static SpeechTokenContext[] vals := ...

List of SpeechTokenContext values indexed by ordinal

value

Source

const Int value