Click or drag to resize

ControllerEventInfo Class

Tracks information about custom methods on a controller
Inheritance Hierarchy
SystemObject
  Crosser.Common.ServerControllerEventInfo

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

The ControllerEventInfo type exposes the following members.

Constructors
  NameDescription
Public methodControllerEventInfo
Ctor
Top
Properties
  NameDescription
Public propertyAllowHttpGet
If true the method allows HTTP requests with GET verb
Public propertyAllowHttpPost
If true the method allows HTTP requests with POST verb
Public propertyAuthorize
If true authorization is needed to access the method
Public propertyAuthorizeAttribute
The Authorize attribute set (if any)
Public propertyDefaultValue
The parameter default value
Public propertyDelegateType
The method signature explained as en enum
Public propertyMethodInfo
Method information
Public propertyParameterInfo
Parameter information
Public propertyParameterName
Parameter name of the controller event
Public propertyReturnsTask
Flag for knowing if to wait for result and send back to client
Public propertyReturnType
The method return type
Public propertyRunSynchronously
If true the call to the method will be done synchronously and no other call will be allowed from the current client until this call is completed
Public propertySerializeParameter
If not byte[] the parameter needs serialization
Public propertySerializeReturnValue
If not byte[] the return value needs serialization
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
See Also