VintaSoft Imaging .NET SDK 14.0: Documentation for Web developer
Vintasoft.Imaging.Office.Web.HttpHandlers Namespace / VintasoftOfficeHandler Class / ExecuteCommand(HttpContext,String) Method
Syntax Requirements SeeAlso
In This Topic
    ExecuteCommand(HttpContext,String) Method (VintasoftOfficeHandler)
    In This Topic
    Executes HTTP command and returns the execution result.
    Syntax
    'Declaration
    
    Protected Overridable Function ExecuteCommand( _
    ByVal context
    An HttpContext object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.
    As System.Web.HttpContext, _
    ByVal commandName
    HTTP command name.
    As String _
    ) As String
    protected virtual string ExecuteCommand(
    System.Web.HttpContext context,
    string commandName
    )
    protected: virtual string* ExecuteCommand(
    System.Web.HttpContext* context,
    string* commandName
    )
    protected:
    virtual string^ ExecuteCommand(
    System.Web.HttpContext^ context,
    string^ commandName
    )

    Parameters

    context
    An HttpContext object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.
    commandName
    HTTP command name.

    Return Value

    JSON string that contains result of HTTP command execution.
    Requirements

    Target Platforms: .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also