Found 1,594 packages
Orchard Core Framework is an application framework for building modular, multi-tenant applications on ASP.NET Core. Implementation for Physical FileStorage.
Orchard Core Framework is an application framework for building modular, multi-tenant applications on ASP.NET Core. Abstractions for FileStorage.
Orchard Core Framework is an application framework for building modular, multi-tenant applications on ASP.NET Core. Implementation for AzureBlob FileStorage.
Core files for an MultiPlug update
Orchard Core Framework is an application framework for building modular, multi-tenant applications on ASP.NET Core. Implementation for Amazon S3 FileStorage.
Optimise multi-part streaming file upload performance, offering 10x improvement in performance, and reduced memory allocation (10%-40%). By default dotnet model form model binding loads the entire stream into memory using `IFormFile` - this is non-ideal for large files where processing of the stream should occur during streaming rather then buffering entire file(s) to memory/disk. This package allows upload streams to be asynchronously processed via a delegate while maintaining generic model binding functionality with `ModelState` validation.
Rebex.Common provides platform-independent low-level API to Rebex libraries. It also provides a set of general-purpose platform-independent cryptographic primitives. This is a paid commercial product with a free 30-day trial: - Trial mode: Start your free 30-day trial by generating your trial key at https://rebex.net/support/trial-key.aspx - Licensed mode: Purchase the product at https://rebex.net/shop/ and get your full license key at https://rebex.net/protected/nuget When the full license key is provided, NuGet.org repository can be used to retrieve versions of Rebex components covered by your support contract. Supported platforms: - .NET 10 on Windows, Linux, macOS, Android, iOS/tvOS - .NET 9 on Windows, Linux, macOS, Android, iOS/tvOS - .NET 8 on Windows, Linux, macOS, Android, iOS/tvOS - .NET 7 on Windows, Linux, macOS, Android, iOS/tvOS - .NET 6 on Windows, Linux, macOS - .NET 5 on Windows, Linux, macOS - .NET Framework 4.0, 4.5.x, 4.6.x, 4.7.x, 4.8.x - .NET Framework 3.5 SP1 - .NET Core 3.1 on Windows, Linux, macOS - Xamarin.Android (10.1 and higher; via .NET Standard 2.1) - Xamarin.iOS (13.10 and higher; via .NET Standard 2.1) - Mono 6.0 or higher on Linux and macOS
This is a the Serilog.Sinks.RollingFileAlternate sink, but with support for multiple platforms, including iOS and MonoDroid - it writes logs to files rolling on size.
File Read and Write Extension for the MultiPlug .Net Edge Computing Platform
T4 helper file to help generate multiple file outputs
Multiplug Local File Recipe Manager
Library for reading configuration from multiple sources in .NET. Current sources are in memory properties, app settings file, environment variables and command line arguments. It is also possible to implement your own configuration sources (like database, consul, etcd, etc.)
AWS Elemental MediaConvert is a file-based video conversion service that transforms media into formats required for traditional broadcast and for internet streaming to multi-screen devices.
The Silverlight Multi File Uploader is a free Silverlight 5 application. It can be used to upload multiple files simultaneously to your website. It can be integrated on any HTML page.
Split ocelot config into multiple files
Example usage of the Silverlight Multi File Uploader. The Silverlight Multi File Uploader is a free Silverlight 5 application. It can be used to upload multiple files simultaneously to your website. It can be integrated on any HTML page.
Easy way to tream multiple files as one while reading or writing
Allow the importation of Files such as CSV and TSV which are converted to MultiPlug Events
MultiNote is notification library utilizing multiple messaging channels like email, Slack webhooks etc. For details, please refer the project README file on GitHub.
A class library for managing multi-threaded sequential write access to one or more files. It is capable of flushing writes from multiple threads in batches by either hitting a specified size threshold or a specified inactivity time limit. It is also possible to write this batching information within the output file(s). Note: This class should be injected as a single or static instance shared across all process threads. Files will be locked exclusively from the first Write() call until FlushAndClose() or Dispose() is called (presently one of these *must* be explicitly called to ensure all data is flushed). The ConcurrentFileWriter class can be found as an extension of System.IO *** Full debugging source/symbols are available from http://srv.symbolsource.org/pdb/Public Usage Example: var cfw = new ConcurrentFileWriter(new ConcurrentFileWriterSettings { flushTimeInMilliseconds = 5000, flushSizeInBytes = 10000, showWriteBatchingMarkers = true }); //Pre-lock file (not required) cfw.Write(@"c:\temp\test.log", null); //Append a string (byte arrays can also be directly written) cfw.WriteUtf8Line(@"c:\temp\test.log", "Test Line"); //Flush and unlock specified file (stop managing) cfw.CloseManagedFile(@"c:\temp\test.log"); //Flush and unlock all managed files cfw.Dispose();