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.
- Host: GitHub
- URL: https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-dotnet
- Owner: groupdocs-annotation-cloud
- License: mit
- Created: 2018-01-11T06:42:09.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-07-15T08:07:44.000Z (7 months ago)
- Last Synced: 2025-08-01T00:31:19.333Z (6 months ago)
- Topics: annotation-cloud-api, annotation-cloud-sdk, cloud-sdk, docx, excel, images, nuget, powerpoint, pptx, rest-api, sdk, tiff, word, xlsx
- Language: C#
- Homepage: https://products.groupdocs.cloud/annotation/net
- Size: 9.05 MB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).