OperationHandler Delegate

A delegate type that defines the signature for REST operation handler functions.

Use dark colors for code blocksCopy
1
2
3
4
5
    public delegate byte[] OperationHandler(NameValueCollection boundVariables,
        JsonObject operationInput,
        string outputFormat,
        string requestProperties,
        out string responseProperties);
ParamterDescription
boundVariablesA collection of the IDs of sub-resources in collection resources (e.g. The bound variable "LayersID" for a collection resource called "Layers" contains the ID of the sub-resource.)
operationInputA JsonObject instance with the input for the operation.
outputFormatThe requested output format, for example "json".
requestPropertiesWell-known properties of the request.
responsePropertiesWell-known properties for the response.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.