Web API Core | ComponentOne
C1.Web.Api.Pdf Namespace / PdfController Class / GetPdfSupportedFormats Method
The full path of the pdf file.

In This Topic
    GetPdfSupportedFormats Method
    In This Topic
    Gets the export formats supported by the specified pdf file.
    Syntax
    'Declaration
     
    
    <HttpGetAttribute()>
    <PathRouteAttribute("{*pdfPath}$pdf/supportedformats")>
    Public Overridable Function GetPdfSupportedFormats( _
       ByVal pdfPath As String _
    ) As IActionResult
    [HttpGet()]
    [PathRoute("{*pdfPath}$pdf/supportedformats")]
    public virtual IActionResult GetPdfSupportedFormats( 
       string pdfPath
    )

    Parameters

    pdfPath
    The full path of the pdf file.

    Return Value

    An Microsoft.AspNetCore.Mvc.IActionResult type object with content of collection of C1.Web.Api.Document.Models.ExportDescription type object.
    See Also