ImageGear .NET v25.2 - Updated
ImageGear.Web.Services Assembly / ImageGear.Web.DataProviders Namespace / MarkupFileImageDataProvider Class / ParseMarkupIndexFileName(String,String) Method
The file name to parse
(out) The extracted Document ID




In This Topic
    ParseMarkupIndexFileName(String,String) Method
    In This Topic
    Parses the given file name according to this provider's MarkupIndexFileNameFormat and extracts the Document Identifier.
    Syntax
    'Declaration
     
    Public Function ParseMarkupIndexFileName( _
       ByVal filename As String, _
       ByRef documentId As String _
    ) As Boolean
    'Usage
     
    Dim instance As MarkupFileImageDataProvider
    Dim filename As String
    Dim documentId As String
    Dim value As Boolean
     
    value = instance.ParseMarkupIndexFileName(filename, documentId)
    public bool ParseMarkupIndexFileName( 
       string filename,
       out string documentId
    )
    public: bool ParseMarkupIndexFileName( 
       string* filename,
       [PARAMFLAG::Out] string* documentId
    ) 
    public:
    bool ParseMarkupIndexFileName( 
       String^ filename,
       [Out] String^ documentId
    ) 

    Parameters

    filename
    The file name to parse
    documentId
    (out) The extracted Document ID

    Return Value

    A boolean indicating whether the parse was successful according to MarkupIndexFileNameFormat
    See Also