Click or drag to resize

InternalController Class

Definition of internal (long running) controllers. These are controllers that cant be connected to, but they can communicate with clients and other controllers. Inherit this class and implement the Run method to create long running controllers.
Inheritance Hierarchy
SystemObject
  Crosser.Common.ServerInternalController

Namespace:  Crosser.Common.Server
Assembly:  Crosser.Common (in Crosser.Common.dll) Version: 0.0.4
Syntax
C#
public abstract class InternalController : IInternalController

The InternalController type exposes the following members.

Constructors
  NameDescription
Protected methodInternalController
Initializes a new instance of the InternalController class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRun
Will be called once when the server is started. You are responsible for implementing processing logic in the Run method.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also