|
| 1 | +# Aspose.Email Cloud SDK for .NET [](https://www.nuget.org/packages/Aspose.Email-Cloud/) |
| 2 | +This repository contains Aspose.Email Cloud SDK for .NET source code. This SDK allows you to work with Aspose.Email Cloud REST APIs in your .NET applications quickly and easily, with zero initial cost. |
| 3 | + |
| 4 | +[Aspose.Email Cloud home](https://products.aspose.cloud/email/family "Aspose.Email Cloud") |
| 5 | +[API Reference](https://apireference.aspose.cloud/email/) |
| 6 | + |
| 7 | +# Key features |
1 | 8 | Aspose.Email Cloud is a REST API for creating email applications that work with standard email file formats. This SDK: |
2 | 9 | - Lets developers manipulate different emails’ formats such as Outlook MSG, EML, VCard, and iCalendar files |
3 | 10 | - Has a built-in email client |
4 | 11 | - Supports AI functionalities: |
5 | 12 | - The Business card recognition |
6 | 13 | - The Name API for parsing and handling personal names |
7 | 14 |
|
8 | | -To use this SDK, you need an App SID and an App Key; they can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) (it requires free registration in Aspose Cloud for this). |
9 | | - |
10 | 15 | ## How to use the SDK? |
11 | 16 | The complete source code is available in the GIT repository. |
12 | 17 | Use reference documentation, available [**here**](docs/README.md) |
13 | 18 |
|
| 19 | +### Prerequisites |
| 20 | + |
| 21 | +To use this SDK, you need: |
| 22 | +- One of supported (or compatible with supported) .NET frameworks: |
| 23 | + - .NETFramework 2.0 |
| 24 | + - .NETFramework 4.5.2 |
| 25 | + - .NETStandard 2.0 |
| 26 | + - MonoAndroid 6.0 |
| 27 | + - Xamarin.iOS 1.0 |
| 28 | + - Xamarin.Mac 2.0 |
| 29 | +- An App SID and an App Key; they can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/#/apps) (it requires free registration in Aspose Cloud for this). |
| 30 | + |
| 31 | +### Installation |
| 32 | +You can use SDK directly in your project via the source code or get a [NuGet Package](https://www.nuget.org/packages/Aspose.Email-Cloud/). |
| 33 | +From the Package Manager: |
| 34 | + |
| 35 | + PM> Install-Package Aspose.Email-Cloud |
| 36 | + |
| 37 | +Using .NET CLI: |
| 38 | + |
| 39 | + dotnet add package Aspose.Email-Cloud |
| 40 | + |
| 41 | +Or as a Package reference: |
| 42 | + |
| 43 | + <PackageReference Include="Aspose.Email-Cloud"/> |
| 44 | + |
14 | 45 | ### Usage examples |
15 | 46 | To use the API, you should create an EmailApi object: |
16 | 47 | ```csharp |
@@ -144,8 +175,9 @@ See examples below: |
144 | 175 | var name = "John Cane"; |
145 | 176 | var result = await emailApi.AiNameGenderizeAsync( |
146 | 177 | new AiNameGenderizeRequest(name)); |
147 | | -//the result contains a list of hypothesis about a person's gender. |
148 | | -//all hypothesis include score, so you can use the most scored version, which will be the first in a list: |
| 178 | +// the result contains a list of hypothesis about a person's gender. |
| 179 | +// all hypothesis include score, so you can use the most scored version, |
| 180 | +// which will be the first in a list: |
149 | 181 | System.Console.WriteLine(result.Value.First().Gender); //prints "Male" |
150 | 182 | ``` |
151 | 183 | </details> |
@@ -228,27 +260,13 @@ System.Console.WriteLine(surName.Value); // "Cane" |
228 | 260 | ``` |
229 | 261 | </details> |
230 | 262 |
|
231 | | -### Install Aspose.Email for Cloud via NuGet |
232 | | -You can use it directly in your project via the source code or get a [NuGet Package](https://www.nuget.org/packages/Aspose.Email-Cloud/). |
233 | | -From the Package Manager: |
234 | | - |
235 | | - PM> Install-Package Aspose.Email-Cloud |
236 | | - |
237 | | -Using .NET CLI: |
238 | | - |
239 | | - dotnet add package Aspose.Email-Cloud |
240 | | - |
241 | | -Or as a Package reference: |
242 | | - |
243 | | - <PackageReference Include="Aspose.Email-Cloud"/> |
244 | | - |
245 | 263 | # Licensing |
246 | 264 | All Aspose.Email Cloud SDKs, helper scripts and templates are licensed under [MIT License](LICENSE). |
247 | 265 |
|
248 | 266 | # Resources |
249 | 267 | + [**SDK Reference documentation**](docs/README.md) |
250 | 268 | + [**Website**](https://www.aspose.cloud) |
251 | | -+ [**Product Home**](https://products.aspose.cloud/Email/cloud) |
| 269 | ++ [**Product Home**](https://products.aspose.cloud/Email) |
252 | 270 | + [**Documentation**](https://docs.aspose.cloud/display/Emailcloud/Home) |
253 | 271 | + [**API Reference**](https://apireference.aspose.cloud/email/) |
254 | 272 | + [**Free Support Forum**](https://forum.aspose.cloud/c/email) |
|
0 commit comments