Skip to content
Snippets Groups Projects
Commit a03e23e4 authored by Klaus Fischer's avatar Klaus Fischer
Browse files

Merge branch 'feature/1522-chunking' of...

Merge branch 'feature/1522-chunking' of https://git.fitko.de/fit-connect/sdk-dotnet into feature/1522-chunking
parents a6ff009b 2f3144bc
No related branches found
No related tags found
1 merge request!125Feature/1522 chunking
......@@ -246,7 +246,7 @@ public abstract class FitConnectClient : IFitConnectClient {
/// <summary>
/// Encrypts the content of each file in the <paramref name="attachment"/> using the specified
/// <paramref name="publicKey"/> and returns an enumerable of key-value pairs, where the key is
/// <paramref name="publicKey"/> and returns enumerable key-value pairs, where the key is
/// the ID of the attachment and the value is the encrypted content of the file.
/// </summary>
/// <param name="publicKey">
......@@ -256,7 +256,7 @@ public abstract class FitConnectClient : IFitConnectClient {
/// The attachment containing the files to be encrypted.
/// </param>
/// <returns>
/// An enumerable of key-value pairs, where the key is the ID of the attachment and the value is
/// Enumerable key-value pairs, where the key is the ID of the attachment and the value is
/// the encrypted content of the file.
/// </returns>
private IEnumerable<KeyValuePair<Guid, string>> EncryptChunked(string publicKey, LargeAttachment attachment) {
......
......@@ -17,7 +17,7 @@ internal static class ProjectSpecification {
public const string CommitId = "unreleased";
public const string SetJsonSchemaUrl =
"https://schema.fitko.de/fit-connect/set-payload/1.1.0/set-payload.schema.json";
"https://schema.fitko.de/fit-connect/set-payload/1.2.2/set-payload.schema.json";
public const string MetadataSchemaUrl = "https://schema.fitko.de/fit-connect/metadata/1.3.0/metadata.schema.json";
......
......@@ -342,6 +342,7 @@ public class ReplyChannelTest : EndToEndTestBase {
[Test]
[Order(63)]
[Ignore("Was only used for debugging")]
public void T063_List_Cases() {
var sender0Cases = ClientFactory.CreateSenderClient(_environment,
_senderConfigs[0].ClientId, _senderConfigs[0].ClientSecret,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment