IControllerEventInfo Properties |
The IControllerEventInfo type exposes the following members.
Name | Description | |
---|---|---|
AllowHttpGet |
If true the method allows HTTP requests with GET verb
| |
AllowHttpPost |
If true the method allows HTTP requests with POST verb
| |
Authorize |
If true authorization is needed to access the method
| |
AuthorizeAttribute |
The Authorize attribute set (if any)
| |
DefaultValue |
The parameter default value
| |
DelegateType |
The method signature explained as en enum
| |
MethodInfo |
Method information
| |
ParameterInfo |
Parameter information
| |
ParameterName |
Parameter name of the controller event
| |
ReturnsTask |
Flag for knowing if to wait for result and send back to client
| |
ReturnType |
The method return type
| |
RunSynchronously |
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
| |
SerializeParameter |
If not byte[] the parameter needs serialization
| |
SerializeReturnValue |
If not byte[] the return value needs serialization
|