Skip to content

Commit 3b84bc6

Browse files
committed
Release Aspose.Cells Cloud SDK 24.6.1
1 parent 30569da commit 3b84bc6

File tree

341 files changed

+351
-345
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

341 files changed

+351
-345
lines changed

Aspose.Cells.Cloud.SDK.Examples/ExamplePostDataTransformation.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,6 @@
6969
AppliedSteps = dataTransformationRequestAppliedSteps
7070
};
7171
var request = new PostDataTransformationRequest(
72+
dataTransformationRequest: dataTransformationRequest
7273
);
7374
this.CellsApi.PostDataTransformation(request);

Aspose.Cells.Cloud.SDK.Test/Api/DataProcessingControllerTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ public void TestPostDataTransformation()
199199
AppliedSteps = dataTransformationRequestAppliedSteps
200200
};
201201
var request = new PostDataTransformationRequest(
202+
dataTransformationRequest: dataTransformationRequest
202203
);
203204
var actual = this.CellsApi.PostDataTransformation(request);
204205
Assert.IsNotNull(actual);

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>24.6</AssemblyVersion>
21-
<FileVersion>24.6</FileVersion>
22-
<Version>24.6</Version>
20+
<AssemblyVersion>24.6.1</AssemblyVersion>
21+
<FileVersion>24.6.1</FileVersion>
22+
<Version>24.6.1</Version>
2323
<PackageReadmeFile>README.md</PackageReadmeFile>
2424

2525
</PropertyGroup>

Aspose.Cells.Cloud.SDK/Model/AppliedOperate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace Aspose.Cells.Cloud.SDK.Model
3737
/// <summary>
3838
/// A data operation that is used to obtain a query of data.
3939
/// </summary>
40-
public class AppliedOperate
40+
public abstract class AppliedOperate
4141
{
4242
/// <summary>
4343
///

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
130130
{
131131
foreach (KeyValuePair<string, string> kvp in extendQueryParameterMap)
132132
{
133-
UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
133+
path = UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
134134
}
135135
}
136136

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
122122
{
123123
foreach (KeyValuePair<string, string> kvp in extendQueryParameterMap)
124124
{
125-
UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
125+
path = UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
126126
}
127127
}
128128

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
100100
{
101101
foreach (KeyValuePair<string, string> kvp in extendQueryParameterMap)
102102
{
103-
UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
103+
path = UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
104104
}
105105
}
106106

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
121121
{
122122
foreach (KeyValuePair<string, string> kvp in extendQueryParameterMap)
123123
{
124-
UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
124+
path = UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
125125
}
126126
}
127127

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
108108
{
109109
foreach (KeyValuePair<string, string> kvp in extendQueryParameterMap)
110110
{
111-
UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
111+
path = UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
112112
}
113113
}
114114

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public HttpWebRequest CreateHttpRequest(string baseUri,IDictionary<string, strin
130130
{
131131
foreach (KeyValuePair<string, string> kvp in extendQueryParameterMap)
132132
{
133-
UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
133+
path = UrlHelper.AddQueryParameterToUrl(path, kvp.Key, kvp.Value);
134134
}
135135
}
136136

0 commit comments

Comments
 (0)