Skip to content

Commit f4889d9

Browse files
committed
Release Aspose.Cells Cloud SDK 25.10.0
1 parent 272d4b4 commit f4889d9

File tree

6 files changed

+95
-90
lines changed

6 files changed

+95
-90
lines changed

Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<RepositoryType>GitHub</RepositoryType>
1818
<Copyright>MIT</Copyright>
1919
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
20-
<AssemblyVersion>25.9</AssemblyVersion>
21-
<FileVersion>25.9</FileVersion>
22-
<Version>25.9</Version>
20+
<AssemblyVersion>25.10</AssemblyVersion>
21+
<FileVersion>25.10</FileVersion>
22+
<Version>25.10</Version>
2323
<PackageReadmeFile>README.md</PackageReadmeFile>
2424

2525
</PropertyGroup>

Aspose.Cells.Cloud.SDK/Request/AddTextRequest.cs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1010
// copies of the Software, and to permit persons to whom the Software is
1111
// furnished to do so, subject to the following conditions:
12-
//
12+
//
1313
// The above copyright notice and this permission notice shall be included in all
1414
// copies or substantial portions of the Software.
15-
//
15+
//
1616
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1717
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1818
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -58,7 +58,7 @@ public AddTextRequest()
5858
/// <param name="outStorageName">Output file Storage Name.</param>
5959
/// <param name="region">The spreadsheet region setting.</param>
6060
/// <param name="password">The password for opening spreadsheet file.</param>
61-
public AddTextRequest(string spreadsheet, string text, string position, string selectText, bool? skipEmptyCells = null, string worksheet = null, string range = null, string outPath = null, string outStorageName = null, string region = null, string password = null)
61+
public AddTextRequest(string spreadsheet,string text, string position, string selectText = null, bool skipEmptyCells = true, string worksheet =null , string range = null)
6262
{
6363
this.Spreadsheet = spreadsheet;
6464
this.text = text;
@@ -72,7 +72,7 @@ public AddTextRequest(string spreadsheet, string text, string position, strin
7272
this.region = region;
7373
this.password = password;
7474
}
75-
75+
7676
/// <summary>
7777
/// Upload spreadsheet file.
7878
/// </summary>
@@ -137,7 +137,7 @@ public AddTextRequest(string spreadsheet, string text, string position, strin
137137
/// The password for opening spreadsheet file.
138138
/// </summary>
139139
public string password { get; set; }
140-
140+
141141

142142
/// <summary>
143143
/// Gets or sets extendQueryParameterMap.
@@ -156,10 +156,10 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
156156
string localVarPostBody ="";
157157
string localVarHttpContentType = "application/json";
158158
// verify the required parameter 'spreadsheet' is set
159-
if ( string.IsNullOrEmpty(this.Spreadsheet) )
160-
{
161-
throw new ApiException(400, "Missing required parameter 'spreadsheet' when calling AddText");
162-
}
159+
// if ( string.IsNullOrEmpty(this.Spreadsheet) )
160+
// {
161+
// throw new ApiException(400, "Missing required parameter 'spreadsheet' when calling AddText");
162+
// }
163163

164164
// verify the required parameter 'text' is set
165165
if (string.IsNullOrEmpty (this.text ))
@@ -174,10 +174,10 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
174174
}
175175

176176
// verify the required parameter 'selectText' is set
177-
if (string.IsNullOrEmpty (this.selectText ))
178-
{
179-
throw new ApiException(400, "Missing required parameter 'selectText' when calling AddText");
180-
}
177+
// if (string.IsNullOrEmpty (this.selectText ))
178+
// {
179+
// throw new ApiException(400, "Missing required parameter 'selectText' when calling AddText");
180+
// }
181181

182182
var path = baseUri + "/cells/content/add/text";
183183
path = Regex
@@ -206,7 +206,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
206206
if (!string.IsNullOrEmpty(Spreadsheet ) && System.IO.File.Exists(Spreadsheet )) {
207207
System.IO.FileInfo fileInfo = new System.IO.FileInfo(Spreadsheet);
208208
localVarFileParams.Add(fileInfo.Name, UrlHelper.ToFileInfo(System.IO.File.OpenRead(Spreadsheet), fileInfo.Name));
209-
}
209+
}
210210

211211

212212

Aspose.Cells.Cloud.SDK/Request/ConvertTextRequest.cs

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1010
// copies of the Software, and to permit persons to whom the Software is
1111
// furnished to do so, subject to the following conditions:
12-
//
12+
//
1313
// The above copyright notice and this permission notice shall be included in all
1414
// copies or substantial portions of the Software.
15-
//
15+
//
1616
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1717
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1818
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -57,7 +57,7 @@ public ConvertTextRequest()
5757
/// <param name="outStorageName">Output file Storage Name.</param>
5858
/// <param name="region">The spreadsheet region setting.</param>
5959
/// <param name="password">The password for opening spreadsheet file.</param>
60-
public ConvertTextRequest(string spreadsheet, string convertTextType, string sourceCharacters, string targetCharacters, string worksheet = null, string range = null, string outPath = null, string outStorageName = null, string region = null, string password = null)
60+
public ConvertTextRequest(string spreadsheet,string convertTextType, string sourceCharacters =null , string targetCharacters = null, string worksheet = null, string range = null)
6161
{
6262
this.Spreadsheet = spreadsheet;
6363
this.convertTextType = convertTextType;
@@ -70,7 +70,7 @@ public ConvertTextRequest(string spreadsheet, string convertTextType, string
7070
this.region = region;
7171
this.password = password;
7272
}
73-
73+
7474
/// <summary>
7575
/// Upload spreadsheet file.
7676
/// </summary>
@@ -129,7 +129,7 @@ public ConvertTextRequest(string spreadsheet, string convertTextType, string
129129
/// The password for opening spreadsheet file.
130130
/// </summary>
131131
public string password { get; set; }
132-
132+
133133

134134
/// <summary>
135135
/// Gets or sets extendQueryParameterMap.
@@ -148,10 +148,10 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
148148
string localVarPostBody ="";
149149
string localVarHttpContentType = "application/json";
150150
// verify the required parameter 'spreadsheet' is set
151-
if ( string.IsNullOrEmpty(this.Spreadsheet) )
152-
{
153-
throw new ApiException(400, "Missing required parameter 'spreadsheet' when calling ConvertText");
154-
}
151+
// if ( string.IsNullOrEmpty(this.Spreadsheet) )
152+
// {
153+
// throw new ApiException(400, "Missing required parameter 'spreadsheet' when calling ConvertText");
154+
// }
155155

156156
// verify the required parameter 'convertTextType' is set
157157
if (string.IsNullOrEmpty (this.convertTextType ))
@@ -160,16 +160,16 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
160160
}
161161

162162
// verify the required parameter 'sourceCharacters' is set
163-
if (string.IsNullOrEmpty (this.sourceCharacters ))
164-
{
165-
throw new ApiException(400, "Missing required parameter 'sourceCharacters' when calling ConvertText");
166-
}
163+
// if (string.IsNullOrEmpty (this.sourceCharacters ))
164+
// {
165+
// throw new ApiException(400, "Missing required parameter 'sourceCharacters' when calling ConvertText");
166+
// }
167167

168168
// verify the required parameter 'targetCharacters' is set
169-
if (string.IsNullOrEmpty (this.targetCharacters ))
170-
{
171-
throw new ApiException(400, "Missing required parameter 'targetCharacters' when calling ConvertText");
172-
}
169+
// if (string.IsNullOrEmpty (this.targetCharacters ))
170+
// {
171+
// throw new ApiException(400, "Missing required parameter 'targetCharacters' when calling ConvertText");
172+
// }
173173

174174
var path = baseUri + "/cells/content/convert/text";
175175
path = Regex
@@ -197,7 +197,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
197197
if (!string.IsNullOrEmpty(Spreadsheet ) && System.IO.File.Exists(Spreadsheet )) {
198198
System.IO.FileInfo fileInfo = new System.IO.FileInfo(Spreadsheet);
199199
localVarFileParams.Add(fileInfo.Name, UrlHelper.ToFileInfo(System.IO.File.OpenRead(Spreadsheet), fileInfo.Name));
200-
}
200+
}
201201

202202

203203

Aspose.Cells.Cloud.SDK/Request/ExtractTextRequest.cs

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1010
// copies of the Software, and to permit persons to whom the Software is
1111
// furnished to do so, subject to the following conditions:
12-
//
12+
//
1313
// The above copyright notice and this permission notice shall be included in all
1414
// copies or substantial portions of the Software.
15-
//
15+
//
1616
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1717
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1818
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -60,7 +60,7 @@ public ExtractTextRequest()
6060
/// <param name="outStorageName">Output file Storage Name.</param>
6161
/// <param name="region">The spreadsheet region setting.</param>
6262
/// <param name="password">The password for opening spreadsheet file.</param>
63-
public ExtractTextRequest(string spreadsheet, string extractTextType, string beforeText, string afterText, int? beforePosition, int? afterPosition, string outPositionRange, string worksheet = null, string range = null, string outPath = null, string outStorageName = null, string region = null, string password = null)
63+
public ExtractTextRequest(string spreadsheet,string extractTextType, string outPositionRange, string beforeText =null ,string afterText = null, int? beforePosition = null, int? afterPosition = null, string worksheet = null, string range = null)
6464
{
6565
this.Spreadsheet = spreadsheet;
6666
this.extractTextType = extractTextType;
@@ -76,7 +76,7 @@ public ExtractTextRequest(string spreadsheet, string extractTextType, string
7676
this.region = region;
7777
this.password = password;
7878
}
79-
79+
8080
/// <summary>
8181
/// Upload spreadsheet file.
8282
/// </summary>
@@ -153,7 +153,7 @@ public ExtractTextRequest(string spreadsheet, string extractTextType, string
153153
/// The password for opening spreadsheet file.
154154
/// </summary>
155155
public string password { get; set; }
156-
156+
157157

158158
/// <summary>
159159
/// Gets or sets extendQueryParameterMap.
@@ -172,10 +172,10 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
172172
string localVarPostBody ="";
173173
string localVarHttpContentType = "application/json";
174174
// verify the required parameter 'spreadsheet' is set
175-
if ( string.IsNullOrEmpty(this.Spreadsheet) )
176-
{
177-
throw new ApiException(400, "Missing required parameter 'spreadsheet' when calling ExtractText");
178-
}
175+
// if ( string.IsNullOrEmpty(this.Spreadsheet) )
176+
// {
177+
// throw new ApiException(400, "Missing required parameter 'spreadsheet' when calling ExtractText");
178+
// }
179179

180180
// verify the required parameter 'extractTextType' is set
181181
if (string.IsNullOrEmpty (this.extractTextType ))
@@ -184,28 +184,28 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
184184
}
185185

186186
// verify the required parameter 'beforeText' is set
187-
if (string.IsNullOrEmpty (this.beforeText ))
188-
{
189-
throw new ApiException(400, "Missing required parameter 'beforeText' when calling ExtractText");
190-
}
187+
// if (string.IsNullOrEmpty (this.beforeText ))
188+
// {
189+
// throw new ApiException(400, "Missing required parameter 'beforeText' when calling ExtractText");
190+
// }
191191

192192
// verify the required parameter 'afterText' is set
193-
if (string.IsNullOrEmpty (this.afterText ))
194-
{
195-
throw new ApiException(400, "Missing required parameter 'afterText' when calling ExtractText");
196-
}
193+
// if (string.IsNullOrEmpty (this.afterText ))
194+
// {
195+
// throw new ApiException(400, "Missing required parameter 'afterText' when calling ExtractText");
196+
// }
197197

198198
// verify the required parameter 'beforePosition' is set
199-
if ( this.beforePosition == null)
200-
{
201-
throw new ApiException(400, "Missing required parameter 'beforePosition' when calling ExtractText");
202-
}
199+
// if ( this.beforePosition == null)
200+
// {
201+
// throw new ApiException(400, "Missing required parameter 'beforePosition' when calling ExtractText");
202+
// }
203203

204204
// verify the required parameter 'afterPosition' is set
205-
if ( this.afterPosition == null)
206-
{
207-
throw new ApiException(400, "Missing required parameter 'afterPosition' when calling ExtractText");
208-
}
205+
// if ( this.afterPosition == null)
206+
// {
207+
// throw new ApiException(400, "Missing required parameter 'afterPosition' when calling ExtractText");
208+
// }
209209

210210
// verify the required parameter 'outPositionRange' is set
211211
if (string.IsNullOrEmpty (this.outPositionRange ))
@@ -242,7 +242,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
242242
if (!string.IsNullOrEmpty(Spreadsheet ) && System.IO.File.Exists(Spreadsheet )) {
243243
System.IO.FileInfo fileInfo = new System.IO.FileInfo(Spreadsheet);
244244
localVarFileParams.Add(fileInfo.Name, UrlHelper.ToFileInfo(System.IO.File.OpenRead(Spreadsheet), fileInfo.Name));
245-
}
245+
}
246246

247247

248248

Aspose.Cells.Cloud.SDK/Request/SplitTextRequest.cs

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1010
// copies of the Software, and to permit persons to whom the Software is
1111
// furnished to do so, subject to the following conditions:
12-
//
12+
//
1313
// The above copyright notice and this permission notice shall be included in all
1414
// copies or substantial portions of the Software.
15-
//
15+
//
1616
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1717
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1818
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -59,7 +59,7 @@ public SplitTextRequest()
5959
/// <param name="outStorageName">Output file Storage Name.</param>
6060
/// <param name="region">The spreadsheet region setting.</param>
6161
/// <param name="password">The password for opening spreadsheet file.</param>
62-
public SplitTextRequest(string spreadsheet, string splitDelimitersType, string customDelimiter, bool? keepDelimitersInResultingCells, string keepDelimitersPosition, string howToSplit, string worksheet = null, string range = null, string outPath = null, string outStorageName = null, string region = null, string password = null)
62+
public SplitTextRequest(string spreadsheet,string splitDelimitersType, string customDelimiter, bool? keepDelimitersInResultingCells =false, string keepDelimitersPosition = null, string HowToSplit = null, string worksheet = null, string range = null)
6363
{
6464
this.Spreadsheet = spreadsheet;
6565
this.splitDelimitersType = splitDelimitersType;
@@ -74,7 +74,7 @@ public SplitTextRequest(string spreadsheet, string splitDelimitersType, string
7474
this.region = region;
7575
this.password = password;
7676
}
77-
77+
7878
/// <summary>
7979
/// Upload spreadsheet file.
8080
/// </summary>
@@ -145,7 +145,7 @@ public SplitTextRequest(string spreadsheet, string splitDelimitersType, string
145145
/// The password for opening spreadsheet file.
146146
/// </summary>
147147
public string password { get; set; }
148-
148+
149149

150150
/// <summary>
151151
/// Gets or sets extendQueryParameterMap.
@@ -164,10 +164,10 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
164164
string localVarPostBody ="";
165165
string localVarHttpContentType = "application/json";
166166
// verify the required parameter 'spreadsheet' is set
167-
if ( string.IsNullOrEmpty(this.Spreadsheet) )
168-
{
169-
throw new ApiException(400, "Missing required parameter 'spreadsheet' when calling SplitText");
170-
}
167+
// if ( string.IsNullOrEmpty(this.Spreadsheet) )
168+
// {
169+
// throw new ApiException(400, "Missing required parameter 'spreadsheet' when calling SplitText");
170+
// }
171171

172172
// verify the required parameter 'splitDelimitersType' is set
173173
if (string.IsNullOrEmpty (this.splitDelimitersType ))
@@ -182,22 +182,22 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
182182
}
183183

184184
// verify the required parameter 'keepDelimitersInResultingCells' is set
185-
if ( this.keepDelimitersInResultingCells == null)
186-
{
187-
throw new ApiException(400, "Missing required parameter 'keepDelimitersInResultingCells' when calling SplitText");
188-
}
185+
// if ( this.keepDelimitersInResultingCells == null)
186+
// {
187+
// throw new ApiException(400, "Missing required parameter 'keepDelimitersInResultingCells' when calling SplitText");
188+
// }
189189

190190
// verify the required parameter 'keepDelimitersPosition' is set
191-
if (string.IsNullOrEmpty (this.keepDelimitersPosition ))
192-
{
193-
throw new ApiException(400, "Missing required parameter 'keepDelimitersPosition' when calling SplitText");
194-
}
191+
// if (string.IsNullOrEmpty (this.keepDelimitersPosition ))
192+
// {
193+
// throw new ApiException(400, "Missing required parameter 'keepDelimitersPosition' when calling SplitText");
194+
// }
195195

196196
// verify the required parameter 'howToSplit' is set
197-
if (string.IsNullOrEmpty (this.HowToSplit ))
198-
{
199-
throw new ApiException(400, "Missing required parameter 'howToSplit' when calling SplitText");
200-
}
197+
// if (string.IsNullOrEmpty (this.HowToSplit ))
198+
// {
199+
// throw new ApiException(400, "Missing required parameter 'howToSplit' when calling SplitText");
200+
// }
201201

202202
var path = baseUri + "/cells/content/split/text";
203203
path = Regex
@@ -227,7 +227,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
227227
if (!string.IsNullOrEmpty(Spreadsheet ) && System.IO.File.Exists(Spreadsheet )) {
228228
System.IO.FileInfo fileInfo = new System.IO.FileInfo(Spreadsheet);
229229
localVarFileParams.Add(fileInfo.Name, UrlHelper.ToFileInfo(System.IO.File.OpenRead(Spreadsheet), fileInfo.Name));
230-
}
230+
}
231231

232232

233233

0 commit comments

Comments
 (0)