diff --git a/arangodb-net-standard.Test/CursorApi/CursorApiClientTest.cs b/arangodb-net-standard.Test/CursorApi/CursorApiClientTest.cs index c01c700c..c4d3bab9 100644 --- a/arangodb-net-standard.Test/CursorApi/CursorApiClientTest.cs +++ b/arangodb-net-standard.Test/CursorApi/CursorApiClientTest.cs @@ -316,7 +316,7 @@ public async Task PutCursorAsync_ShouldThrow_WhenCursorDoesNotExist() [Fact] public async Task PutCursorAsync_ShouldReturnResponseModelWithInterface() { - CursorResponse postResponse = + PostCursorResponse postResponse = await _cursorApi.PostCursorAsync("FOR i IN 0..1500 RETURN i"); ICursorResponse putResult = diff --git a/arangodb-net-standard/CursorApi/CursorApiClient.cs b/arangodb-net-standard/CursorApi/CursorApiClient.cs index 39e0981c..7ca10530 100644 --- a/arangodb-net-standard/CursorApi/CursorApiClient.cs +++ b/arangodb-net-standard/CursorApi/CursorApiClient.cs @@ -78,7 +78,7 @@ protected virtual WebHeaderCollection GetHeaderCollection(CursorHeaderProperties /// /// Optional. The stream transaction Id. /// - public virtual async Task> PostCursorAsync( + public virtual async Task> PostCursorAsync( string query, Dictionary bindVars = null, PostCursorOptions options = null, @@ -115,7 +115,7 @@ public virtual async Task> PostCursorAsync( /// Object encapsulating options and parameters of the query. /// Optional. Additional Header properties. /// - public virtual async Task> PostCursorAsync( + public virtual async Task> PostCursorAsync( PostCursorBody postCursorBody, CursorHeaderProperties headerProperties = null) { var content = GetContent(postCursorBody, new ApiClientSerializationOptions(true, true)); @@ -125,7 +125,7 @@ public virtual async Task> PostCursorAsync( if (response.IsSuccessStatusCode) { var stream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false); - return DeserializeJsonFromStream>(stream); + return DeserializeJsonFromStream>(stream); } throw await GetApiErrorException(response).ConfigureAwait(false); diff --git a/arangodb-net-standard/CursorApi/ICursorApiClient.cs b/arangodb-net-standard/CursorApi/ICursorApiClient.cs index fcf6033b..6ccdd44f 100644 --- a/arangodb-net-standard/CursorApi/ICursorApiClient.cs +++ b/arangodb-net-standard/CursorApi/ICursorApiClient.cs @@ -23,7 +23,7 @@ public interface ICursorApiClient /// /// Optional. The stream transaction Id. /// - Task> PostCursorAsync( + Task> PostCursorAsync( string query, Dictionary bindVars = null, PostCursorOptions options = null, @@ -40,7 +40,7 @@ Task> PostCursorAsync( /// Object encapsulating options and parameters of the query. /// Optional. Additional Header properties. /// - Task> PostCursorAsync( + Task> PostCursorAsync( PostCursorBody postCursorBody, CursorHeaderProperties headerProperties = null); /// diff --git a/arangodb-net-standard/CursorApi/Models/CursorResponse.cs b/arangodb-net-standard/CursorApi/Models/PostCursorResponse.cs similarity index 97% rename from arangodb-net-standard/CursorApi/Models/CursorResponse.cs rename to arangodb-net-standard/CursorApi/Models/PostCursorResponse.cs index 6f6ea075..22cbb28e 100644 --- a/arangodb-net-standard/CursorApi/Models/CursorResponse.cs +++ b/arangodb-net-standard/CursorApi/Models/PostCursorResponse.cs @@ -7,7 +7,7 @@ namespace ArangoDBNetStandard.CursorApi.Models /// Response from ArangoDB when creating a new cursor. /// /// - public class CursorResponse : ICursorResponse + public class PostCursorResponse : ICursorResponse { /// /// A flag to indicate that an error occurred (false in this case) @@ -56,4 +56,4 @@ public class CursorResponse : ICursorResponse /// public string Id { get; set; } } -} +} \ No newline at end of file