Found 12 packages
Sumo.Retry provides several types of retry policy, lambda based WithRetry extension methods and a RetryProxy based on System.Reflection.DispatchProxy.
Wrapper for DbConnection facilitating Fallback, RoundRobin, and Retries
Wrapper for SqlConnection facilitating Fallback, RoundRobin, and Retries
A modern, high-performance HTTP client library for .NET with fluent API, proxy support, retry policies, JWT authentication, request queuing, and advanced parsing features.
This is a StackExchange.Redis's client proxy help you to connect the Redis Server easier. It control the connection and retry. Also provide the request/response log. GitLab Repository: https://gitlab.com/ponylin1985/zayniframework
Production-grade HTTP API client with runtime proxy generation, automatic retry, CancellationToken support, file uploads, form data, response headers, and per-request timeouts. A feature-rich, extensible alternative to Refit.
This is a StackExchange.Redis's client proxy help you to connect the Redis Server easier. It control the connection and retry. Also provide the request/response log.
log4net.ElasticSearch.Async is a log4net appender, based on log4net.ElasticSearch package, for easy logging of exceptions and messages to Elasticsearch indices. The main improvement over log4net.ElasticSearch is background/async logging based on producer-consumer pattern, automatically utilizing bulk API in case of log event bursts. Currently the package provides: - Background/Async logging based on producer-consumer pattern (non-blocking for main application thread) - Configurable exponential backoff retry policy for communication with ElasticSearch - Configurable buffer sizes with rolling buffer option (both general producer-consumer buffer and intermediate flush buffer) - External machine IP added to log events (if possible) - Skipping TLS certificate validation for ElasticSearch endpoint - Setting custom HTTP(S) proxy - Disabling system HTTP(S) proxy - Using custom ElasticSearch processing pipeline - Gzip HTTP compression - NET Standard 2.0 support
Production-grade HTTP API client with runtime proxy generation, automatic retry, CancellationToken support, file uploads, form data, response headers, and per-request timeouts. A feature-rich, extensible alternative to Refit.
Build your API test easily with few simple steps and this framework allows you to focus more on your Test. The wrapper allows to call the endpoints easily and provide different options on your request and response. Overview This framework is built as part of Selenium Essentials to provide an API framework which allows to make calls to endpoints easily. For advanced data transformation features including Excel integration, consider using TestAny.Essentials.Api.Extensions. Key Features: - API framework to write integration tests -- Supports fluent way of endpoint definitions -- Support most of the operations -- Simple and easy to manage the tests -- Retry mechanisms with configurable timeouts -- Cookie management and domain extraction -- Proxy and certificate support -- Comprehensive response handling Advanced Capabilities: - Request retry with customizable conditions - Timeout control for server requests - Cookie extraction and management - Auto-redirection handling - No-cache options - JSON and query parameter support - Comprehensive HTTP method support (GET, POST, PUT, DELETE, PATCH) Extensions Available: For enhanced functionality including Excel data transformation, template processing, and data-driven testing, install TestAny.Essentials.Api.Extensions which provides: - Excel data integration with {{placeholder}} template transformation - Advanced data manipulation and transformation utilities - Enhanced extension methods for string and data operations Example: return new TestApiHttp() .SetEnvironment("http://api.openweathermap.org") .PrepareRequest("/data/2.5/forecast") .Get() .ResponseBody .ContentJson;
Provides a resilient WCF client as a web service reverse proxy built on top of GenericWcfClient, featuring support for Polly's retry actions and the circuit breaker pattern.
Lightweight API testing framework with essential features for simple integration tests. A streamlined version of TestAny.Essentials.Api focused on core functionality with minimal dependencies. Overview TestAny.Essentials.Api.Lite is a lightweight version of the full API testing framework, designed for projects that need basic API testing capabilities without the overhead of advanced features. It provides the core functionality for making HTTP requests and validating responses in a simple, easy-to-use package. Key Features: - Lightweight Design: Minimal dependencies and reduced footprint - Core HTTP Operations: Support for GET, POST, PUT, DELETE, and PATCH requests - Fluent API: Clean, readable syntax for building API tests - Response Validation: Basic response handling and content validation - Simple Configuration: Easy setup with minimal configuration requirements - Essential Extensions: Core extension methods for common operations What's Included: - Basic HTTP client functionality - Request/response handling - Core validation methods - Essential extension methods - Simple configuration options What's NOT Included (compared to full Api package): - Advanced retry mechanisms - Complex authentication options - Extensive middleware support - Advanced logging and monitoring - Excel data integration (available in Extensions package) - Complex proxy and certificate handling Ideal For: - Simple integration tests - Lightweight testing scenarios - Projects with minimal API testing requirements - Quick prototyping and proof-of-concepts - Environments where minimal dependencies are preferred Example: return new TestApiHttp() .SetEnvironment("http://api.openweathermap.org") .PrepareRequest("/data/2.5/forecast") .Get() .ResponseBody .ContentJson; For advanced features like Excel data transformation, retry mechanisms, and complex authentication, consider using TestAny.Essentials.Api with TestAny.Essentials.Api.Extensions.