Found 104 packages
C# Tools and Bindings for the Android SDK. Please note that this package is not officially supported, and has not received extensive testing.
Package Description
Graceterm middleware provides implementation to ensure graceful shutdown of AspNet Core applications. The basic concept is: After aplication received a SIGTERM (a signal asking it to terminate), Graceterm will hold it alive till all pending requests are completed or a timeout ocurr.
This package is an instrumentation library which instruments the AWS Message Processing Framework for .NET to collect traces about messages that are sent and received.
A simple TcpClient with asynchronous connect logic. Received data packets are available via a DataReceived event. There are also events for Connected and Disconnected.
Provides support for several Bluetooth Beacon specifications. Manages received Bluetooth advertisements, clusters them into individual beacons and parses the advertisement payloads according to specifications including the Eddystone open Bluetooth beacon format from Google, as well as beacons comparable to the iBeacon / Proximity Beacon format by Apple.
Glue to allow NSubstitute to use Fluent Assertions when verifying received calls.
SlackConnector initiates an open connection between you and the Slack api servers. SlackConnector uses web-sockets to allow real-time messages to be received and handled within your application.
Helpers for testing when using PeanutButter.DatabaseHelpers
Provides a re-factoring and re-imagining of the Diagnostic elements deployed in the Analyzer and Code Fixes project template. This particular assembly focuses primarily on the Diagnostic Analyzers with built-in Roslyn compilation support.
Provides NSubstitute for Microsoft.Extenstions.Logging.ILogger that can be use with .Received()
This library offers NSubistitute-specific extensions so you can have Expect-style syntax for your NSubstitute assertions. For example, one may previously have done: ``` Expect(result).To.Equal(expected); someService.Received(1).SomeMethodCall(); ``` and now you can keep it consistent: ``` Expect(result).To.Equal(expected); Expect(someService).To.Have.Received(1).SomeMethodCall(); ```
Features: - Very simple use in several lines - all the code for obtaining the data is already written and working in a background thread - It's event based class - available TextMessageReceived and BinaryMessageReceived events - Also available Connected, Disconnected and ExceptionOccurred events - Right async methods that support CancellationToken's - Auto Reconnect - Open to suggestions and problems on the github
Create named pipe servers that can handle multiple client connections simultaneously. Send strongly-typed messages between clients and servers: any serializable .NET object can be sent over a pipe and will be automatically serialized/deserialized, including cyclical references and complex object graphs. Messages are sent and received asynchronously on a separate background thread and marshalled back to the calling thread (typically the UI). Supports large messages - up to 300 MiB. Requires .NET 4.0 full.
Features: - Very simple use in several lines - all the code for obtaining the data is already written and working in a background thread - It's event based class - available TextMessageReceived and BinaryMessageReceived events - Also available Connected, Disconnected and ExceptionOccurred events - Right async methods that support CancellationToken's - Auto Reconnect - Open to suggestions and problems on the github
NReco.PhantomJS is a .NET wrapper for running PhantomJS (headless WebKit browser) from C#/.NET code. PhantomJS is a headless WebKit scriptable with a JavaScript API. It has fast and native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG. How to use: var phantomJS = new PhantomJS(); phantomJS.OutputReceived += (sender, e) => { Console.WriteLine("PhantomJS output: {0}", e.Data); }; phantomJS.RunScript("console.log('hello from js '); phantom.exit();", null); More info (online demo, examples): https://www.nrecosite.com/phantomjs_wrapper_net.aspx
Allows you to generate embed JavaScript for the Telegram login widget and verify the hashes received.
Provides a re-factoring and re-imagining of the Diagnostic elements deployed in the Analyzer and Code Fixes project template. This particular assembly focuses primarily on the Diagnostic Analyzers with built-in Roslyn compilation support.
A simple C# class using Watson TCP to enable a one-to-one high availability cluster. Events are used to notify the encompassing application when the cluster is healthy (client and server connected), unhealthy (client or server disconnected), or a message is received.
A simple .NET Standard 2.0 library for writing and reading CSV files using a List of T as the input or received output of the operation.