Sort Score
Result 10 results
Languages All
Labels All
Results 131 - 140 of 193 for

error handling conversion

(0.03 sec)
  1. Loading | Documentation

    Open Navigation Close Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product Solution GroupDocs.......Conversion Product Solution GroupDocs...stream Load document from url Handle loading of external resources...

    docs.groupdocs.com/parser/net/loading/
  2. Loading Documents | Documentation

    Following this guide, you will learn how to load PDF, Word, Excel, and PowerPoint documents by local file path and stream with GroupDocs.Conversion for Python via .NET API....Conversion Product Solution GroupDocs...GroupDocs.Conversion Product Family / GroupDocs.Conversion for Python...

    docs.groupdocs.com/conversion/python-net/develo...
  3. Classify document from stream | Documentation

    Classifying of the document from stream could be performed with the next step Call Classify method for “stream” stream with Documents taxonomy and return 2 best results. Handle possible ApiException // Classify document from stream with Documents taxonomy and return 2 best resultstry { var response = classifier.Classify(stream, 2, Taxonomy.Documents); Console.WriteLine(response.BestClassName, response.BestClassProbability); } catch (ApiException e) { Console.WriteLine(e.Message); }...Conversion Product Solution GroupDocs...and return 2 best results. Handle possible ApiException // Classify...

    docs.groupdocs.com/classification/net/classify-...
  4. Extend supported extensions list | Documentation

    This article explains the method which can be used when for some reason files have non-standard extensions or if its format is supported, but not pre-configured....Conversion Product Solution GroupDocs...extension (e.g. “.dump”) as being handled by the same as all plain text...

    docs.groupdocs.com/redaction/net/extend-support...
  5. Extend supported extensions list | Documentation

    This article explains the method which can be used when for some reason files have non-standard extensions or if its format is supported, but not pre-configured....Conversion Product Solution GroupDocs...extension (e.g. “.dump”) as being handled by the same DocumentFormatInstan...

    docs.groupdocs.com/redaction/java/extend-suppor...
  6. Classify document by path | Documentation

    Classify document by path with IAB-2 taxonomy and return 2 best results Classifying of the document could be performed with the next steps Call Classify method for “document.pdf” file in the current (".") directory with IAB-2 taxonomy and return 2 best results. Handle possible ApiException try { var response = classifier.Classify("document.pdf", ".", 3, Taxonomy.Iab2); Console.WriteLine(response.BestClassName, response.BestClassProbability); } catch (ApiException e) { Console.WriteLine(e.Message); } Precisely classify document by path with Documents taxonomy and return 4 best results Call Classify method for “document....Conversion Product Solution GroupDocs...and return 2 best results. Handle possible ApiException try {...

    docs.groupdocs.com/classification/net/classify-...
  7. Handle loading of external resources documents ...

    GroupDocs.Parser provides the functionality to handle loading of HTML external resources. Here are the steps to handle loading of HTML external resources. Instantiate the ParserSettings object and pass External Resource Handler; Create Parser object and call GetImages method. The following code sample shows how to handle loading of HTML external resources. // Create an instance of ParserSettings to pass External Resource Handler ParserSettings settings = new ParserSettings(new Handler()); // Create an instance of Parser class to generate spreadsheet page previews try (Parser parser = new Parser(Constants....Conversion Product Solution GroupDocs...Loading / Handle loading of external resources documents Handle loading...

    docs.groupdocs.com/parser/java/handle-loading-o...
  8. Handle loading of external resources documents ...

    Learn how to handle loading of external resources....Conversion Product Solution GroupDocs...Loading / Handle loading of external resources documents Handle loading...

    docs.groupdocs.com/parser/net/handle-loading-of...
  9. Build your first search solution | Documentation

    First of all you need to create an index. An index can be created in memory or on disk. An index created in memory cannot be saved after exiting your program. In contrast, an index created on disk may be loaded in the future to continue working....Conversion Product Solution GroupDocs...reasons, for example, due to read errors from the disk or the presence...

    docs.groupdocs.com/search/java/build-your-first...
  10. Build your first search solution | Documentation

    First of all you need to create an index. An index can be created in memory or on disk. An index created in memory cannot be saved after exiting your program. In contrast, an index created on disk may be loaded in the future to continue working....Conversion Product Solution GroupDocs...reasons, for example, due to read errors from the disk or the presence...

    docs.groupdocs.com/search/net/build-your-first-...