SecureConnect 1.0.15

SecureConnect

SecureConnect is a multi-targeted communication library for .NET that provides secure remote procedure calls (RPC), file operations, and database access with support for chunked transfers and SSL/TLS.

Target frameworks: net10.0, net48.

Install

dotnet add package SecureConnect

Quick start

using SecureConnect.Client;
using SecureConnect.Configuration;

var config = new RabbitMQConfig
{
    HostName = "localhost",
    Port = 5672,
    UserName = "guest",
    Password = "guest",
    QueueName = "server_queue"
};

using var client = new SecureConnectClient(config);

var response = await client.SendTextAsync("my_queue", "Hello, Server!");
Console.WriteLine($"Response: {response}");

Features

  • RPC communication over RabbitMQ
  • Pub/sub messaging (PublishAsync) and queue subscriptions (SubscribeAsync)
  • File operations (upload, download, delete, directory management) + hash verification
  • Remote SQL execution with structured results
  • Chunked transfers (8KB default) for large payloads
  • SSL/TLS support + path traversal protection

Notes

  • See README.md in the repository for full documentation and examples.

Showing the top 20 packages that depend on SecureConnect.

Packages Downloads
Daq.Library
A reusable DAQ runtime class library providing protocol parsing, network/connector stack, acquisition state machine, device management, and record transfer capabilities.
1
Daq.Library
A reusable DAQ runtime class library providing protocol parsing, network/connector stack, acquisition state machine, device management, and record transfer capabilities.
0

Version Downloads Last updated
1.0.15 1 09/24/2026
1.0.14 1 09/24/2026
1.0.13 1 09/24/2026
1.0.12 0 09/24/2026
1.0.11 0 09/24/2026
1.0.10 0 09/24/2026
1.0.9 0 09/24/2026
1.0.8 0 09/24/2026