Found 9 packages
This package adds original NamedPipeServerStream constructors from Net.Framework to NetStandard See System.IO.Pipes.NamedPipeServerStreamConstructors.New method Features: - Completely repeats constructor behavior from .Net Framework (including exceptions) - Has a strong name - Restored from decompiled code. No changes from the original - Official dependencies only - Tested
Easily calculate ranges of recurring dates based on patterns such as every 3 days, every Friday, every third Tuesday of every second month, in an intuitive and flexible way
A goal seek algorithm. Using three points of input (the trident) at a time, the algorithm takes a stab (three guesses) and analyses the output values. The tine (value) which is the closest to the goal output value, becomes the new center stab point and the tine spacing is increased. When the center tine is the closest to the output value, the tine spacing is reduced and the trident stab repeats until an output value is within the acceptance threshold.
The Syncfusion® Essential HTML to PDF converter is a .NET library that converts URLs, HTML string, SVG, MHTML to PDF in Windows Forms application. This converter uses advanced Blink rendering engine, thus generating pixel perfect PDF from HTML or URL. Key features: • Converts any webpage to PDF. • Converts any raw HTML string to PDF. • Works both in 32-bit and 64-bit environments. • Supports header and footer. • Repeats HTML table header and footer in PDF. • Supports HTML5, CSS3, SVG, and Web fonts. • Thread safe. • Supports internal and external hyperlinks. • Sets document properties, page settings, security, viewer preferences, etc. • Protects PDF document with password and permission. Learn more: https://www.syncfusion.com/pdf-framework/net/html-to-pdf?utm_source=nuget&utm_medium=listing Documentation: https://help.syncfusion.com/file-formats/pdf/converting-html-to-pdf?utm_source=nuget&utm_medium=listing Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident?utm_source=nuget&utm_medium=listing Forum: https://www.syncfusion.com/forums/windowsforms?utm_source=nuget&utm_medium=listing
The Syncfusion® Essential HTML to PDF converter is a .NET library that converts URLs, HTML string, SVG, MHTML to PDF in WPF application. This converter uses advanced Blink rendering engine, thus generating pixel perfect PDF from HTML or URL. Key features: • Converts any webpage to PDF. • Converts any raw HTML string to PDF. • Works both in 32-bit and 64-bit environments. • Supports header and footer. • Repeats HTML table header and footer in PDF. • Supports HTML5, CSS3, SVG, and Web fonts. • Thread safe. • Supports internal and external hyperlinks. • Sets document properties, page settings, security, viewer preferences, etc. • Protects PDF document with password and permission. Learn more: https://www.syncfusion.com/pdf-framework/net/html-to-pdf?utm_source=nuget&utm_medium=listing Documentation: https://help.syncfusion.com/file-formats/pdf/converting-html-to-pdf?utm_source=nuget&utm_medium=listing Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident?utm_source=nuget&utm_medium=listing Forum: https://www.syncfusion.com/forums/wpf?utm_source=nuget&utm_medium=listing
The Syncfusion Essential HTML to PDF converter is a .NET library that converts URLs, HTML string, SVG, MHTML to PDF in ASP.NET application. This converter uses advanced Blink rendering engine, thus generating pixel perfect PDF from HTML or URL. Key features: • Converts any webpage to PDF. • Converts any raw HTML string to PDF. • Works both in 32-bit and 64-bit environments. • Supports header and footer. • Repeats HTML table header and footer in PDF. • Supports HTML5, CSS3, SVG, and Web fonts. • Thread safe. • Supports internal and external hyperlinks. • Sets document properties, page settings, security, viewer preferences, etc. • Protects PDF document with password and permission. Learn more: https://www.syncfusion.com/pdf-framework/net/html-to-pdf?utm_source=nuget&utm_medium=listing Documentation: https://help.syncfusion.com/file-formats/pdf/converting-html-to-pdf?utm_source=nuget&utm_medium=listing Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident?utm_source=nuget&utm_medium=listing Forum: https://www.syncfusion.com/forums/aspnet?utm_source=nuget&utm_medium=listing
Never Have I Ever generates random statements for the popular party game. Features 330+ unique prompts with per-API-key tracking to avoid repeats.
Truth or Dare generates random truth questions and dare challenges for the classic party game. Features 400+ unique prompts with per-API-key tracking to avoid repeats.
Commands simplifies coordination of asynchronous and synchronous activities. It works with both task and non-task-based operations. The library is built upon class Command, which represents an action. A Command may be run synchronously or asynchronously, and may be aborted. ParallelCommands, itself a Command, executes a collection of commands concurrently, and SequentialCommands executes its commands in sequence. Using these classes, it's possible to compose deep levels of coordinated actions. For example, SequentialCommands can hold instances of ParallelCommands, which in turn could hold SequentialCommands, and any other Command-derived object. PeriodicCommand repeats its action at a given interval, ScheduledCommand runs once at a specific time, and RecurringCommand runs at times that are provided via a callback. RetryableCommand offers the option to conditionally keep retrying a failed command, FinallyCommand provides a mechanism to ensure a cleanup routine is run regardless of whether a command succeeds or fails, and TimeLimitedCommand fails with a timeout exception if a given duration elapses before the command finishes execution. All of the above Command classes are simply containers for other Command objects that presumably do something of interest. They can be combined in ways that offer a lot of customization. For example, to make an HttpRequest at a given time, with a timeout and a configurable number of retries, you could create a ScheduledCommand containing a RetryableCommand containing a TimeLimitedCommand containing an HttpRequestCommand. TaskCommand, DelegateCommand and Command.AsTask() offer easy integration with tasks and delegates. CommandDispatcher manages asynchronous execution of dynamically generated commands. The Command class allows registration of ICommandMonitor objects. CommandTracer will write diagnostic output to the debug stream, and CommandLogger will write diagnostic output to file. Using the provided CommandLogViewer app (source available in GitHub), it is possible to see the status of all command executions, including their parent/child relationships. Example usage can be found here: https://github.com/efieleke/CommandLib/blob/master/CommandLibSample/Program.cs The entire source lives here: https://github.com/efieleke/CommandLib.git Guidelines for developing your own Command-derived class: - If the implementation of your command is naturally synchronous, inherit from SyncCommand - If the implementation of your command is naturally asynchronous and makes use of tasks (i.e. the Task class), inherit from TaskCommand - If the implementation of your command is naturally asynchronous but does not make use of tasks, inherit from AsyncCommand - Make your implementation responsive to abort requests if it could take more than a trivial amount of time. To do this, make ocassional calls to Command.CheckAbortFlag() or Command.AbortRequested A versions for C++ exists at https://github.com/efieleke/CommandLibForCPP.git. A help file containing complete documentation exists within this package's contents.