Skip to content

Commit f750298

Browse files
committed
985481-ug: Resolved CI failures.
1 parent 9546d47 commit f750298

File tree

13 files changed

+193
-138
lines changed

13 files changed

+193
-138
lines changed

Document-Processing/PDF/PDF-Library/NET/Loading-and-saving-document/Open-and-Save-PDF-document-AWS-Lambda.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords: aws lambda save pdf, aws load pdf, c# save pdf, c# load pdf
99

1010
# Open and save PDF document in AWS Lambda
1111

12-
The [Syncfusion<sup>&reg;</sup> .NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core) is used to create, read, and edit PDF documents programatically without the dependency of Adobe Acrobat. Using this library, **open and save PDF document in AWS Lambda**.
12+
The [Syncfusion<sup>&reg;</sup> .NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core) is used to create, read, and edit PDF documents programmatically without the dependency of Adobe Acrobat. Using this library, **open and save PDF document in AWS Lambda**.
1313

1414
## Steps to open and save PDF document in AWS Lambda
1515

Document-Processing/PDF/PDF-Library/NET/Loading-and-saving-document/Open-and-save-PDF-document-in-ASP-NET-Core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ keywords: .net core save pdf, .net core load pdf, c# save pdf, c# load pdf
99

1010
# Open and save PDF document in ASP.NET Core
1111

12-
The [Syncfusion<sup>&reg;</sup> .NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core) is used to create, read, and edit PDF documents programatically without the dependency of Adobe Acrobat. Using this library, you can **open and save PDF document in ASP.NET Core**.
12+
The [Syncfusion<sup>&reg;</sup> .NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core) is used to create, read, and edit PDF documents programmatically without the dependency of Adobe Acrobat. Using this library, you can **open and save PDF document in ASP.NET Core**.
1313

14-
## Steps to open and save PDF document programatically:
14+
## Steps to open and save PDF document programmatically:
1515

1616
Step 1: Create a new ASP.NET Core Web application project.
1717
![Create ASP.NET Core Web application in Visual Studio](Images/Create_ASP_NET_Core_application.png)

Document-Processing/PDF/PDF-Library/NET/Open-pdf-files/From-AWS-S3.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
22
title: Open PDF file from AWS S3 | Syncfusion
3-
description: This page describes how to Open PDF file from file AWS S3 in C# using Syncfusion .NET PDF library.
3+
description: This page provides a detailed guide on how to open a PDF file stored in an AWS S3 bucket using C# and the Syncfusion .NET PDF library.
44
platform: document-processing
55
control: PDF
66
documentation: UG
77
---
8-
# Open PDF file from AWS S3
8+
# Open PDF from AWS S3
99

1010
To load a PDF file from AWS S3, you can follow the steps below
1111

12-
1312
Step 1: Create a simple console application
1413

1514
![Project configuration window](Open-PDF-Images/Console-Application.png)
@@ -18,7 +17,6 @@ Step 3: Install the [AWSSDK.S3](https://www.nuget.org/packages/AWSSDK.S3) NuGet
1817

1918
![NuGet package installation](Open-PDF-Images/AWSSDK.S3-nuget.png)
2019

21-
2220
Step 4: Include the following namespaces in the Program.cs file.
2321

2422
{% tabs %}
@@ -33,7 +31,6 @@ using Amazon.S3.Transfer;
3331

3432
{% endtabs %}
3533

36-
3734
Step 5: Add the below code example to load a PDF from AWS S3.
3835

3936
{% tabs %}

Document-Processing/PDF/PDF-Library/NET/Open-pdf-files/From-azure-blob-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ platform: document-processing
55
control: PDF
66
documentation: UG
77
---
8-
# Open PDF file from Azure Blob storage
8+
# Open PDF from Azure Blob storage
99

1010
To load a PDF file from Azure blob storage, you can follow the steps below
1111

Document-Processing/PDF/PDF-Library/NET/Open-pdf-files/From-dropbox-cloud-file-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ platform: document-processing
55
control: PDF
66
documentation: UG
77
---
8-
# Open PDF file from Dropbox cloud file storage
8+
# Open PDF from Dropbox cloud file storage
99

1010
To Open a PDF file from Dropbox cloud file storage, you can follow the steps below
1111

@@ -33,7 +33,7 @@ using Dropbox.Api;
3333
{% endtabs %}
3434

3535

36-
Step 5: Add the below code example to load a PDF ifrom Dropbox cloud file storage.
36+
Step 5: Add the below code example to load a PDF from Dropbox cloud file storage.
3737

3838
{% tabs %}
3939

Document-Processing/PDF/PDF-Library/NET/Open-pdf-files/From-google-cloud-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ platform: document-processing
55
control: PDF
66
documentation: UG
77
---
8-
# Open PDF file from Google Cloud storage
8+
# Open PDF from Google Cloud storage
99

1010
To Open a PDF file from Google cloud storage, you can follow the steps below
1111

Document-Processing/PDF/PDF-Library/NET/Open-pdf-files/From-google-drive.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ platform: document-processing
55
control: PDF
66
documentation: UG
77
---
8-
# Open PDF file from Google Drive
8+
# Open PDF from Google Drive
99

1010
To Open a PDF file from Google Drive, you can follow the steps below
1111

@@ -21,7 +21,6 @@ Step 3: Install the [Google.Apis.Drive.v3](https://www.nuget.org/packages/Google
2121

2222
![NuGet package installation](open-PDF-Images/Google.Apis.Drive.V3-nuget.png)
2323

24-
2524
Step 4: Include the following namespaces in the Program.cs file.
2625

2726
{% tabs %}
@@ -37,7 +36,6 @@ using Google.Apis.Util.Store;
3736

3837
{% endtabs %}
3938

40-
4139
Step 5: Add the below code example to open a PDF from google drive.
4240

4341
{% tabs %}

Document-Processing/PDF/PDF-Library/NET/Save-pdf-files/To-AWS-S3.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
22
title: Save PDF file to AWS S3 | Syncfusion
3-
description: This page describes how to save PDF file to file AWS S3 in C# using Syncfusion .NET PDF library.
3+
description: This page describes how to save PDF file to file AWS S3 bucket in C# using Syncfusion .NET PDF library.
44
platform: document-processing
55
control: PDF
66
documentation: UG
77
---
8-
# Save PDF file to AWS S3
8+
# Save PDF to AWS S3
99

1010
To save a PDF file to AWS S3, you can follow the steps below
1111

12-
1312
Step 1: Create a simple console application
1413

1514
![Project configuration window](Save-PDF-Images/Console-Application.png)

Document-Processing/PDF/PDF-Library/NET/Save-pdf-files/To-azure-blob-storage.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ platform: document-processing
55
control: PDF
66
documentation: UG
77
---
8-
# Save PDF file to Azure Blob storage
8+
# Save PDF to Azure Blob storage
99

1010
To save a PDF file to Azure blob storage, you can follow the steps below
1111

12-
1312
Step 1: Create a simple console application
1413

1514
![Project configuration window](Save-PDF-Images/Console-Application.png)

Document-Processing/PDF/PDF-Library/NET/Save-pdf-files/To-dropbox-cloud-file-storage.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,14 @@ platform: document-processing
55
control: PDF
66
documentation: UG
77
---
8-
# Save PDF file to Dropbox cloud file storage
8+
# Save PDF to Dropbox cloud file storage
99

1010
To save a PDF file to Dropbox cloud file storage, you can follow the steps below
1111

1212
Step 1: Create a Dropbox API
1313

14-
1514
To create a Dropbox API App, you should follow the official documentation provided by Dropbox [link](https://www.dropbox.com/developers/documentation/dotnet#tutorial). The process involves visiting the Dropbox Developer website and using their App Console to set up your API app. This app will allow you to interact with Dropbox programmatically, enabling secure access to files and data.
1615

17-
18-
1916
Step 2: Create a simple console application
2017
![Project configuration window](Save-PDF-Images/Console-Application.png)
2118

@@ -40,7 +37,6 @@ using Syncfusion.Drawing;
4037

4138
{% endtabs %}
4239

43-
4440
Step 5: Add the below code example to create a simple PDF and save in Dropbox cloud file storage.
4541

4642
{% tabs %}

0 commit comments

Comments
 (0)