@@ -57,6 +57,26 @@ The DLLs included in the package may not be the latest version. We recommend usi
57
57
Install-Package RestSharp
58
58
Install-Package Newtonsoft.Json
59
59
```
60
+ ## Convert PDF to Epub in Dotnet
61
+
62
+ ``` csharp
63
+ // Get your ClientId and ClientSecret from https://dashboard.aspose.cloud (free registration required).
64
+ var config = new Configuration
65
+ {
66
+ ClientId = " MY_CLIENT_ID" ,
67
+ ClientSecret = " MY_CLIENT_SECRET" ,
68
+ ApiBaseUrl = baseUrl ,
69
+ };
70
+
71
+ var pdfApi = new PdfApi (config );
72
+
73
+ using (var file = File .OpenRead (Path .Combine (TestDataFolder , " sample.pdf" )))
74
+ {
75
+ var response = pdfApi .UploadFile (Path .Combine (TempFolder , serverFileName ), file );
76
+ }
77
+
78
+ var response = pdfApi .GetPdfInStorageToEpub (" sample.pdf" , folder : TempFolder );
79
+ ```
60
80
61
81
NOTE: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See [ RestSharp #742 ] ( https://github.com/restsharp/RestSharp/issues/742 )
62
82
@@ -722,7 +742,8 @@ Class | Method | HTTP request | Description
722
742
723
743
| .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift| Go|
724
744
| ---| ---| ---| ---| ---| ---| ---| --| --|
725
- | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-dotnet ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-java ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-php ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-python ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-ruby ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-node.js ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-android ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-swift ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-perl ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-go ) |
726
- | [ NuGet] ( https://www.nuget.org/packages/Aspose.pdf-Cloud/ ) | [ Maven] ( https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-pdf-cloud ) | [ Composer] ( https://packagist.org/packages/aspose/pdf-sdk-php ) | [ PIP] ( https://pypi.org/project/asposepdfcloud/ ) | [ GEM] ( https://rubygems.org/gems/aspose_pdf_cloud ) | [ NPM] ( https://www.npmjs.com/package/asposepdfcloud ) | [ Maven] ( https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-pdf-cloud ) | [ Cocoapods] ( https://cocoapods.org/pods/AsposepdfCloud ) | [ Go.Dev] ( https://pkg.go.dev/github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/ ) |
745
+ | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-dotnet ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-java ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-php ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-python ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-ruby ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-node.js ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-android ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-swift ) | [ GitHub] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-go ) |
746
+ | [ NuGet] ( https://www.nuget.org/packages/Aspose.pdf-Cloud/ ) | [ Maven] ( https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-pdf-cloud ) | [ Composer] ( https://packagist.org/packages/aspose/pdf-sdk-php ) | [ PIP] ( https://pypi.org/project/asposepdfcloud/ ) | [ GEM] ( https://rubygems.org/gems/aspose_pdf_cloud ) | [ NPM] ( https://www.npmjs.com/package/asposepdfcloud ) | [ Maven] ( https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-pdf-cloud ) | [ Cocoapods] ( https://cocoapods.org/pods/AsposepdfCloud ) | [ Go.Dev] ( https://pkg.go.dev/github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/v20#readme-aspose-pdf-cloud ) |
747
+
727
748
728
749
[ Product Page] ( https://products.aspose.cloud/pdf/net ) | [ Documentation] ( https://docs.aspose.cloud/display/pdfcloud/Home ) | [ API Reference] ( https://apireference.aspose.cloud/pdf/ ) | [ Code Samples] ( https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-net ) | [ Blog] ( https://blog.aspose.cloud/category/pdf/ ) | [ Free Support] ( https://forum.aspose.cloud/c/pdf ) | [ Free Trial] ( https://dashboard.aspose.cloud/#/apps )
0 commit comments