Click or drag to resize

ControllerDelegate Class

Contains information and rules about how to call the controller/method
Inheritance Hierarchy
SystemObject
  Crosser.Common.ServerControllerDelegate

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

The ControllerDelegate type exposes the following members.

Constructors
  NameDescription
Public methodControllerDelegate
Initializes a new instance of the ControllerDelegate 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 methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldDefaultValue
Default value for the parameter
Public fieldDelegate
The delegate
Public fieldDelegateType
The method signature described as a enum
Public fieldHasAccess
True if the client has access
Public fieldParameterName
The parameter name
Public fieldParameterType
The parameter type
Public fieldReturnType
The return type
Public fieldRunSynchronously
If true the execution will be synchron and no other calls will be executed for the current client until completion of this call
Public fieldSerializeParameter
True if the parameter needs to be serialized
Public fieldSerializer
The serializer, default is 'json'
Public fieldSerializeReturnValue
True if the return value need to be serialized
Top
See Also