IRESTCallback Interface

REST handler callback interface.

Members

Name Description
Method HandleOperation Callback for REST operation handling.
Method HandleResource Callback for REST resource handling.

IRESTCallback.HandleOperation Method

Callback for REST operation handling.

Public Sub HandleOperation ( _
    ByVal Capabilities As String, _
    ByVal resourceName As String, _
    ByVal operationName As String, _
    ByVal boundVariables As IPropertySet, _
    ByVal inputJSON As String, _
    ByVal outputFormat As String, _
    ByVal requestProps As IJSONObject, _
    ByRef responseProps As IJSONObject, _
    ByRef outputData As Object _
)
public void HandleOperation (
    string Capabilities,
    string resourceName,
    string operationName,
    IPropertySet boundVariables,
    string inputJSON,
    string outputFormat,
    IJSONObject requestProps,
    ref IJSONObject responseProps,
    ref object outputData
);

IRESTCallback.HandleResource Method

Callback for REST resource handling.

Public Sub HandleResource ( _
    ByVal Capabilities As String, _
    ByVal resourceName As String, _
    ByVal boundVariables As IPropertySet, _
    ByVal inputJSON As String, _
    ByVal outputFormat As String, _
    ByVal requestProps As IJSONObject, _
    ByRef responseProps As IJSONObject, _
    ByRef outputData As Object _
)
public void HandleResource (
    string Capabilities,
    string resourceName,
    IPropertySet boundVariables,
    string inputJSON,
    string outputFormat,
    IJSONObject requestProps,
    ref IJSONObject responseProps,
    ref object outputData
);

Classes that implement IRESTCallback

Classes Description

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