This repository contains Aspose.Words Cloud SDK for .NET source code. This SDK allows you to work with Aspose.Words Cloud REST APIs in your .NET applications quickly and easily, with zero initial cost.
- Conversion between various document-related formats (20+ formats supported), including PDF<->Word conversion
- Mail merge and reports generation
- Splitting Word documents
- Accessing Word document metadata and statistics
- Find and replace
- Watermarks and protection
- Full read & write access to Document Object Model, including sections, paragraphs, text, images, tables, headers/footers and many others
See API Reference for full API specification.
The complete source code is available in this repository folder. You can either directly use it in your project via source code or get NuGet distribution (recommended). For more details, please visit our documentation website.
To use Aspose Words for Cloud .NET SDK you need to register an account with Aspose Cloud and lookup/create App Key and SID at Cloud Dashboard. There is free quota available. For more details, see Aspose Cloud Pricing.
From the command line:
nuget install Aspose.Words-Cloud
From Package Manager:
PM> Install-Package Aspose.Words-Cloud
From within Visual Studio:
- Open the Solution Explorer.
- Right-click on a project within your solution.
- Click on Manage NuGet Packages...
- Click on the Browse tab and search for "Aspose.Words-Cloud".
- Click on the Aspose.Words-Cloud package, select the appropriate version in the right-tab and click Install.
The examples below show how your application have to initiate and convert "doc" file to "pdf" using Aspose.Words-Cloud library:
var wordsApi = new WordsApi(AppKey, AppSid);
var saveOptionsData = new SaveOptionsData { SaveFormat = "pdf", FileName = "destination.pdf" };
var request = new PostDocumentSaveAsRequest("fileStoredInCloud.doc", saveOptionsData);
wordsApi.PostDocumentSaveAs(request);
Tests contain various examples of using the SDK.
- .NET Framework 2.0 or later
- Json.NET
New SDK has the following advantages over the previous version:
- SDK is fully in sync with the API, all missing methods are added
- Classes, methods and properties have comments and are IDE-friendly
- Better security
- Usage of Request/Response classes to represent long lists of parameters. This allows for cleaner code and easier backwards-compatibility going forward
New SDK is not backwards compatible with previous generation because of the last item. It should be straightforward to convert your code to using Request/Response objects, if you need any help on migration please ask at Free Support Forums.
Your feedback is very important to us. Please feel free to contact us using our Support Forums.