The Operator type exposes the following properties.
Properties
Public Protected | Instance Static | Declared Inherited | XNA Framework Only .NET Compact Framework Only |
Member | Description | |
---|---|---|
ContainerName |
Return the name of this Operator's container.
This may return null during the init phase (i.e. until the first call to Resume()).
| |
DisplayName |
Return the display name of this Operator. The display name is the String
that's shown in the list of available Operators.
| |
FullyQualifiedName |
Return the fully qualified name of this Operator. This contains the container name,
any module names and the name of the operator.
This may return null during the init phase (i.e. until the first call to Resume()).
| |
HasNotYetStarted |
Returns true if this Operator has not yet started running.
| |
IsRunning |
Returns true if this Operator is currently running.
| |
IsShutdown |
Returns true if this Operator is currently shut down.
An Operator is shut down when it is in the runtime state of SHUTDOWN, which
is the terminal state for Operators.
| |
IsSuspended |
Returns true if this Operator is currently suspended.
| |
Name |
Return the name of this Operator. Operators are named and can be managed
by name. This may return null during the init phase (i.e. until the first call to Resume()).
| |
Path |
Return the path to this Operator.
This may return null during the init phase (i.e. until the first call to Resume()).
| |
ShortDisplayName |
Return the short display name of this Operator. This short display name
is the String displayed by Studio in the palette, and used to name new instances
of this Operator to an EventFlow application.
| |
TheLogger |
The operator's instance of Operator..::..Logger. This can be used to send loging traces
to the StreamBase application, and to query the current log level.
|