You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+67-21Lines changed: 67 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,19 @@
1
1
# GroupDocs.Conversion Cloud SDK for .NET
2
2
3
-
This repository contains GroupDocs.Conversion Cloud SDK for .NET source code. This SDK allows you to work with GroupDocs.Conversion Cloud REST APIs in your .NET applications.
3
+
This repository contains GroupDocs.Conversion Cloud SDK for .NET source code. This SDK has been developed to help you get started with using our document conversion REST API, allowing to seamlessly convert your documents to any format you need. With this single API, you can convert back and forth between over 50 types of documents and images, including all Microsoft Office and OpenDocument file formats, PDF documents, HTML, CAD, raster images and many more.
4
4
5
5
## How to use the SDK
6
6
7
7
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/display/conversioncloud/Available+SDKs#AvailableSDKs-.NET).
8
8
9
-
## Dependencies
9
+
### Create an account
10
+
Creating an account is very simple. Go to Dashboard to create a free account.
11
+
We’re using Single Sign On across our websites, therefore, if you already have an account with our services, you can use it to also acccess the [Dashboard](https://dashboard.groupdocs.cloud).
Before you can make any requests to GroupDocs Cloud API you need to get a Client Id and a Client Secret. This will will be used to invoke GroupDocs Cloud API. You can get it by creating a new [Application](https://dashboard.groupdocs.cloud/applicationsV).
12
15
13
-
## Getting Started
16
+
## Convert document
14
17
15
18
```csharp
16
19
usingSystem;
@@ -23,26 +26,69 @@ namespace Example
23
26
{
24
27
publicvoidMain()
25
28
{
26
-
//TODO: Get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
27
-
varappSid="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
28
-
varappKey="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
29
+
// For complete examples and data files, please go to https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-dotnet-samples
30
+
stringMyClientSecret=""; // Get ClientId and ClientSecret from https://dashboard.groupdocs.cloud
31
+
stringMyClientId=""; // Get ClientId and ClientSecret from https://dashboard.groupdocs.cloud
0 commit comments