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

In This Topic
    GetPdfFeatures Method
    In This Topic
    Gets the features supported by the pdf document source instance with specified path.
    Syntax
    'Declaration
     
    
    <HttpGetAttribute()>
    <PathRouteAttribute("{*pdfPath}$pdf/features")>
    Public Overridable Function GetPdfFeatures( _
       ByVal pdfPath As String _
    ) As IActionResult
    [HttpGet()]
    [PathRoute("{*pdfPath}$pdf/features")]
    public virtual IActionResult GetPdfFeatures( 
       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.IDocumentFeatures type object.
    See Also