Web API Core | ComponentOne
C1.Web.Api.Report Namespace / ReportProvider Class / CreateDocument Method
The relative path of the report.
The collection of HTTP query string variables.

In This Topic
    CreateDocument Method (ReportProvider)
    In This Topic
    Creates the document for the specified report path.
    Syntax
    'Declaration
     
    
    Protected MustOverride Function CreateDocument( _
       ByVal path As String, _
       ByVal args As NameValueCollection _
    ) As C1.Win.Document.C1DocumentSource
    protected abstract C1.Win.Document.C1DocumentSource CreateDocument( 
       string path,
       NameValueCollection args
    )

    Parameters

    path
    The relative path of the report.
    args
    The collection of HTTP query string variables.

    Return Value

    A C1.Win.Document.C1DocumentSource created for the specified path.
    Remarks
    If overiding this method, you can create the document by yourself, or modify the document created by base.
    See Also