Skip to content

Commit 2409a31

Browse files
committed
1000615: Ci failures
1 parent 5590e46 commit 2409a31

28 files changed

Lines changed: 79 additions & 79 deletions

Document-Processing/Word/Word-Processor/asp-net-core/opening-documents/aws-s3-bucket.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,14 +111,14 @@ N> Replace **Your Access Key from AWS S3**, **Your Secret Key from AWS S3**, and
111111

112112
**Step 3:** Modify the Index.cshtml File in the Document Editor sample
113113

114-
In the client-side, the document is returned from the web service is opening using [`open`](../../api/document-editor/#open) method.
114+
In the client-side, the document is returned from the web service is opening using `open` method.
115115

116116
{% tabs %}
117117
{% highlight cshtml tabtitle="CSHTML" %}
118-
{% include code-snippet/document-editor-container/open-aws-s3/tagHelper %}
118+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-aws-s3/tagHelper %}
119119
{% endhighlight %}
120120
{% highlight c# tabtitle="Document-editor.cs" %}
121-
{% include code-snippet/document-editor-container/open-aws-s3/document-editor.cs %}
121+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-aws-s3/document-editor.cs %}
122122
{% endhighlight %}
123123
{% endtabs %}
124124

Document-Processing/Word/Word-Processor/asp-net-core/opening-documents/azure-blob-storage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ N> Replace **Your Connection string from Azure** with the actual connection stri
9696

9797
**Step 3:** Modify the Index.cshtml File in the Document Editor sample
9898

99-
In the client-side, the document is returned from the web service is opening using [`open`](../../api/document-editor/#open) method.
99+
In the client-side, the document is returned from the web service is opening using `open` method.
100100

101101

102102
{% tabs %}
103103
{% highlight razor tabtitle="CSHTML" %}
104-
{% include code-snippet/document-editor-container/open-azure-blob/razor %}
104+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-azure-blob/razor %}
105105
{% endhighlight %}
106106
{% highlight c# tabtitle="Document-editor.cs" %}
107-
{% include code-snippet/document-editor-container/open-azure-blob/document-editor.cs %}
107+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-azure-blob/document-editor.cs %}
108108
{% endhighlight %}
109109
{% endtabs %}
110110
{% endif %}

Document-Processing/Word/Word-Processor/asp-net-core/opening-documents/box-cloud-file-storage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To load a document from Box cloud file storage in a document Editor, you can fol
1414

1515
**Step 1:** Set up a Box developer account and create a Box application
1616

17-
To access Box storage programmatically, you'll need a developer account with Box. Go to the [Box Developer Console](https://developer.box.com/), sign in or create a new account, and then create a new Box application. This application will provide you with the necessary credentials Client ID and Client Secret to authenticate and access Box APIs. Before accessing files, you need to authenticate your application to access your Box account. Box API supports `OAuth 2.0 authentication` for this purpose.
17+
To access Box storage programmatically, you'll need a developer account with Box. Go to the [Box Developer Console](https://developer.box.com/guides), sign in or create a new account, and then create a new Box application. This application will provide you with the necessary credentials Client ID and Client Secret to authenticate and access Box APIs. Before accessing files, you need to authenticate your application to access your Box account. Box API supports `OAuth 2.0 authentication` for this purpose.
1818

1919

2020
**Step 2:** Create a Simple Document Editor Sample in ASP.NET Core
@@ -122,14 +122,14 @@ N> replace **Your_Box_Storage_Access_Token** with your actual box access token,
122122

123123
**Step 4:** Modify the Index.cshtml File in the Document Editor sample
124124

125-
In the client-side, the document is returned from the web service is opening using [`open`](../../api/document-editor/#open) method.
125+
In the client-side, the document is returned from the web service is opening using `open` method.
126126

127127
{% tabs %}
128128
{% highlight cshtml tabtitle="CSHTML" %}
129-
{% include code-snippet/document-editor-container/open-box-cloud-file-storage/tagHelper %}
129+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-box-cloud-file-storage/tagHelper %}
130130
{% endhighlight %}
131131
{% highlight c# tabtitle="Document-editor.cs" %}
132-
{% include code-snippet/document-editor-container/open-box-cloud-file-storage/document-editor.cs %}
132+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-box-cloud-file-storage/document-editor.cs %}
133133
{% endhighlight %}
134134
{% endtabs %}
135135

Document-Processing/Word/Word-Processor/asp-net-core/opening-documents/dropbox-cloud-file-storage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Open document from Dropbox cloud file storage
11+
# Open document from Dropbox cloud file storage in Document Editor
1212

1313
To load a document from Dropbox cloud file storage in a Document editor, you can follow the steps below
1414

@@ -105,14 +105,14 @@ N> Replace **Your_Dropbox_Access_Token** with your actual Dropbox access token a
105105

106106
**Step 4:** Modify the Index.cshtml File in the Document Editor sample
107107

108-
In the client-side, the document is returned from the web service is opening using [`open`](../../api/document-editor/#open) method.
108+
In the client-side, the document is returned from the web service is opening using `open` method.
109109

110110
{% tabs %}
111111
{% highlight cshtml tabtitle="CSHTML" %}
112-
{% include code-snippet/document-editor-container/open-dropbox-cloud-file-storage/tagHelper %}
112+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-dropbox-cloud-file-storage/tagHelper %}
113113
{% endhighlight %}
114114
{% highlight c# tabtitle="Document-editor.cs" %}
115-
{% include code-snippet/document-editor-container/open-dropbox-cloud-file-storage/document-editor.cs %}
115+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-dropbox-cloud-file-storage/document-editor.cs %}
116116
{% endhighlight %}
117117
{% endtabs %}
118118

Document-Processing/Word/Word-Processor/asp-net-core/opening-documents/google-cloud-storage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,15 @@ N> Replace **path/to/service-account-key.json** with the actual file path to you
111111

112112
**Step 3:** Modify the Index.cshtml File in the Document Editor sample
113113

114-
In the client-side, the document is returned from the web service is opening using [`open`](../../api/document-editor/#open) method.
114+
In the client-side, the document is returned from the web service is opening using `open` method.
115115

116116

117117
{% tabs %}
118118
{% highlight cshtml tabtitle="CSHTML" %}
119-
{% include code-snippet/document-editor-container/open-google-cloud-storage/tagHelper %}
119+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-google-cloud-storage/tagHelper %}
120120
{% endhighlight %}
121121
{% highlight c# tabtitle="Document-editor.cs" %}
122-
{% include code-snippet/document-editor-container/open-google-cloud-storage/document-editor.cs %}
122+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-google-cloud-storage/document-editor.cs %}
123123
{% endhighlight %}
124124
{% endtabs %}
125125

Document-Processing/Word/Word-Processor/asp-net-core/opening-documents/google-drive.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,15 +136,15 @@ N> The **FolderId** part is the unique identifier for the folder. For example, i
136136

137137
**Step 4:** Modify the Index.cshtml File in the Document Editor sample
138138

139-
In the client-side, the document is returned from the web service is opening using [`open`](../../api/document-editor/#open) method.
139+
In the client-side, the document is returned from the web service is opening using `open` method.
140140

141141

142142
{% tabs %}
143143
{% highlight cshtml tabtitle="CSHTML" %}
144-
{% include code-snippet/document-editor-container/open-google-drive/tagHelper %}
144+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-google-drive/tagHelper %}
145145
{% endhighlight %}
146146
{% highlight c# tabtitle="Document-editor.cs" %}
147-
{% include code-snippet/document-editor-container/open-google-drive/document-editor.cs %}
147+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-google-drive/document-editor.cs %}
148148
{% endhighlight %}
149149
{% endtabs %}
150150

Document-Processing/Word/Word-Processor/asp-net-core/opening-documents/one-drive.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,19 +129,19 @@ public async Task<string> LoadFromOneDrive([FromBody] Dictionary<string, string>
129129

130130
```
131131

132-
N> Replace **Your_Tenent_ID**, **Your_Application_ID**, and **Your_Folder_Name_To_Access_The_Files_In_Onedrive** with your actual tenant ID, application ID, and folder name.
132+
N> Replace **Your_Tenant_ID**, **Your_Application_ID**, and **Your_Folder_Name_To_Access_The_Files_In_OneDrive** with your actual tenant ID, application ID, and folder name.
133133

134134
**Step 4:** Modify the Index.cshtml File in the Document Editor sample
135135

136-
In the client-side, the document is returned from the web service is opening using [`open`](../../api/document-editor/#open) method.
136+
In the client-side, the document is returned from the web service is opening using `open` method.
137137

138138

139139
{% tabs %}
140140
{% highlight cshtml tabtitle="CSHTML" %}
141-
{% include code-snippet/document-editor-container/open-one-drive/tagHelper %}
141+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-one-drive/tagHelper %}
142142
{% endhighlight %}
143143
{% highlight c# tabtitle="Document-editor.cs" %}
144-
{% include code-snippet/document-editor-container/open-one-drive/document-editor.cs %}
144+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/open-one-drive/document-editor.cs %}
145145
{% endhighlight %}
146146
{% endtabs %}
147147

Document-Processing/Word/Word-Processor/asp-net-core/saving-documents/aws-s3-bucket.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Save document to AWS S3 in Document editor | Syncfusion
4-
description: Learn about how to Save document to AWS S3 in ASP.NET MVC Document editor of Syncfusion Essential JS 2 and more details.
4+
description: Learn about how to Save document to AWS S3 in ASP.NET Core Document editor of Syncfusion Essential JS 2 and more details.
55
platform: document-processing
66
control: Save document to AWS S3
77
documentation: ug
@@ -123,10 +123,10 @@ In the client-side, to export the document into blob the document using [`saveAs
123123

124124
{% tabs %}
125125
{% highlight cshtml tabtitle="CSHTML" %}
126-
{% include code-snippet/document-editor-container/save-aws-s3/tagHelper %}
126+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/save-aws-s3/tagHelper %}
127127
{% endhighlight %}
128128
{% highlight c# tabtitle="Document-editor.cs" %}
129-
{% include code-snippet/document-editor-container/save-aws-s3/document-editor.cs %}
129+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/save-aws-s3/document-editor.cs %}
130130
{% endhighlight %}
131131
{% endtabs %}
132132

Document-Processing/Word/Word-Processor/asp-net-core/saving-documents/azure-blob-storage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Save document to Azure Blob Storage
11+
# Save document to Azure Blob Storage in ASP.NET Core
1212

1313
To save a document to Azure Blob Storage, you can follow the steps below
1414

@@ -113,15 +113,15 @@ N> Replace **Your Connection string from Azure** with the actual connection stri
113113

114114
**Step 3:** Modify the Index.cshtml File in the Document Editor sample
115115

116-
In the client-side, to export the document into blob the document using [`saveAsBlob`](../../api/document-editor/#saveAsBlob) and sent to server-side for saving in Azure Blob Storage container.
116+
In the client-side, to export the document into blob the document using `saveAsBlob` and sent to server-side for saving in Azure Blob Storage container.
117117

118118

119119
{% tabs %}
120120
{% highlight cshtml tabtitle="CSHTML" %}
121-
{% include code-snippet/document-editor-container/save-azure-blob/tagHelper %}
121+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/save-azure-blob/tagHelper %}
122122
{% endhighlight %}
123123
{% highlight c# tabtitle="Document-editor.cs" %}
124-
{% include code-snippet/document-editor-container/save-azure-blob/document-editor.cs %}
124+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/save-azure-blob/document-editor.cs %}
125125
{% endhighlight %}
126126
{% endtabs %}
127127

Document-Processing/Word/Word-Processor/asp-net-core/saving-documents/box-cloud-file-storage.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Save document to Box cloud file storage
11+
# Save document to Box cloud file storage in ASP.NET Core
1212

1313
To save a document to Box cloud file storage, you can follow the steps below
1414

1515
**Step 1:** Set up a Box developer account and create a Box application
1616

17-
To access Box storage programmatically, you'll need a developer account with Box. Go to the [Box Developer Console](https://developer.box.com/), sign in or create a new account, and then create a new Box application. This application will provide you with the necessary credentials Client ID and Client Secret to authenticate and access Box APIs. Before accessing files, you need to authenticate your application to access your Box account. Box API supports `OAuth 2.0 authentication` for this purpose.
17+
To access Box storage programmatically, you'll need a developer account with Box. Go to the [Box Developer Console](https://developer.box.com/guides), sign in or create a new account, and then create a new Box application. This application will provide you with the necessary credentials Client ID and Client Secret to authenticate and access Box APIs. Before accessing files, you need to authenticate your application to access your Box account. Box API supports `OAuth 2.0 authentication` for this purpose.
1818

1919

2020
**Step 2:** Create a Simple Document Editor Sample in ASP.NET Core
@@ -127,15 +127,15 @@ N> replace **Your_Box_Storage_Access_Token** with your actual box access token,
127127

128128
**Step 4:** Modify the Index.cshtml File in the Document Editor sample
129129

130-
In the client-side, to export the document into blob the document using [`saveAsBlob`](../../api/document-editor/#saveAsBlob) and sent to server-side for saving in Box cloud file storage.
130+
In the client-side, to export the document into blob the document using `saveAsBlob` and sent to server-side for saving in Box cloud file storage.
131131

132132

133133
{% tabs %}
134134
{% highlight cshtml tabtitle="CSHTML" %}
135-
{% include code-snippet/document-editor-container/save-box-cloud-file-storage/tagHelper %}
135+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/save-box-cloud-file-storage/tagHelper %}
136136
{% endhighlight %}
137137
{% highlight c# tabtitle="Document-editor.cs" %}
138-
{% include code-snippet/document-editor-container/save-box-cloud-file-storage/document-editor.cs %}
138+
{% include code-snippet/document-editor/asp-net-core/document-editor-container/save-box-cloud-file-storage/document-editor.cs %}
139139
{% endhighlight %}
140140
{% endtabs %}
141141

0 commit comments

Comments
 (0)