An open API service indexing awesome lists of open source software.

https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-dotnet

.NET SDK for communicating with the GroupDocs.Annotation REST API. Add, Remove Annotations from a variety of documents.
https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-dotnet

annotation-cloud-api annotation-cloud-sdk cloud-sdk docx excel images nuget powerpoint pptx rest-api sdk tiff word xlsx

Last synced: 13 days ago
JSON representation

.NET SDK for communicating with the GroupDocs.Annotation REST API. Add, Remove Annotations from a variety of documents.

Awesome Lists containing this project

README

          

# GroupDocs.Annotation Cloud SDK for .NET

This repository contains GroupDocs.Annotation Cloud SDK for .NET source code. This SDK allows you to work with GroupDocs.Annotation Cloud REST APIs in your .NET applications.

## How to use the SDK

The complete source code is available in this repository folder, you can either directly use it in your project via NuGet package manager. For more details, please visit our [documentation website](https://docs.groupdocs.cloud/annotation/).

## Dependencies

+[Json.NET](https://www.nuget.org/packages/Newtonsoft.Json)

## Getting Started

```csharp
using System;
using System.Diagnostics;
using GroupDocs.Annotation.Cloud.Sdk.Api;

namespace Example
{
public class Example
{
public void Main()
{
//TODO: Get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
var appSid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
var appKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";

var api = new InfoApi(appSid, appKey);

try
{
// Get supported file formats
var response = api.GetSupportedFileFormats();

foreach (var format in response.Formats)
{
Debug.Print(format.ToString());
}
}
catch (Exception e)
{
Debug.Print("Something went wrong: " + e.Message);
}
}
}
}
```

## Licensing

All GroupDocs.Annotation Cloud SDKs are licensed under [MIT License](LICENSE).

## Resources

+[**Website**](https://www.groupdocs.cloud)
+[**Product Home**](https://products.groupdocs.cloud/annotation)
+[**Documentation**](https://docs.groupdocs.cloud/annotation/)
+[**Free Support Forum**](https://forum.groupdocs.cloud/c/annotation)
+[**Blog**](https://blog.groupdocs.cloud/category/annotation)

## Contact Us

Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/annotation).