Corely.Common 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Corely.Common --version 1.0.0
                    
NuGet\Install-Package Corely.Common -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Corely.Common" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Corely.Common" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Corely.Common" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Corely.Common --version 1.0.0
                    
#r "nuget: Corely.Common, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Corely.Common&version=1.0.0
                    
Install Corely.Common as a Cake Addin
#tool nuget:?package=Corely.Common&version=1.0.0
                    
Install Corely.Common as a Cake Tool

Corely Common

This library contains common utilities to be used in other projects.

Table of Contents

Installation

dotnet add package Corely.Common

Getting Started

Here's a brief example of how to use the library:

Repository

Corely.Common

Included Utilities

Redaction Provider

IRedactionProvider is an interface that provides a method to redact sensitive information from a string. The RedactionProviderBase class implements this interface and provides a default implementation for redacting sensitive information from a string. The RedactionProviderBase class uses the ReplaceGroups Regex Extension to redact sensitive information from a string. You can easily create new redaction providers:

public partial class MyRedactionProvider : RedactionProviderBase
{
    protected override List<Regex> GetReplacePatterns() => [
        RegexToReplace()
    ];

    [GeneratedRegex(@"(text-to-replace)", RegexOptions.Compiled | RegexOptions.IgnoreCase)]
    private static partial Regex RegexToReplace();
}

Example usage:

var redactionProvider = new MyRedactionProvider();
var redacted = redactionProvider.Redact("text-to-replace");

Paged Result

PagedResult<T> is a class that helps in managing paginated data. It provides properties and methods to handle pagination logic, such as skipping items, taking a specific number of items, and determining if there are more items to fetch.

Example usage:

var pagedResult = new PagedResult<MyItem>(0, 10); 
pagedResult.OnGetNextChunk += (pagedResponse) =>
{
    pagedResponse.AddItems(
        _dataSource
        .Skip(pagedResponse.Skip)
        .Take(pagedResponse.Take));
    return pagedResponse;
}; 
var nextChunk = pagedResult.GetNextChunk();

Properties

  • Items: The list of items in the current page.
  • Skip: The number of items to skip.
  • Take: The number of items to take.
  • PageNum: The current page number.
  • HasMore: Indicates if there are more items to fetch.

Methods

  • GetNextChunk(): Fetches the next chunk of items.
  • SetItems(IEnumerable<T> items): Sets the items for the current page.
  • AddItems(IEnumerable<T> items): Adds items to the current page.

Events

  • OnGetNextChunk: An event that is triggered to fetch the next chunk of items when GetNextChunk is called.

Dispose Base

DisposeBase is an abstract class that implements IDisposable and IAsyncDisposable. It provides Dispose and DisposeAsync public methods and has protected overrides for disposing managed and unmanaged resources.

Example Usage:

public class MyClass : DisposeBase
{
    protected override void DisposeManagedResources()
    {
        // Dispose managed resources
    }
    protected override void DisposeUnmanagedResources()
    {
        // Dispose unmanaged resources
    }
    protected async override ValueTask DisposeAsyncCore()
    {
        // Dispose managed resources asynchronously
    }
}

File Paths

IFilePathProvider supports the following operations:

  • DoesFileExist : Checks if a file exists
  • GetOverwriteProtectedPath : Returns a path with a file name that is protected from overwriting
  • GetFileNameWithExtension : Returns the file name with extension
  • GetFileNameWithoutExtension : Returns the file name without extension

The following implementations of IFilePathProvider are included:

FilePathProvider

This implements IFilePathProvider for local file paths. It is used to provide file path operations for local files

var provider = new FilePathProvider();
var path = provider.GetOverwriteProtectedPath("C:\\temp\\file.txt");

Extensions

Regex Extensions

Extensions for the System.Text.RegularExpressions.Regex class are provided to simplify the use of regular expressions. The following extensions are included:

ReplaceGroups

This extension allows you to replace the groups in a regular expression with a value. The following example demonstrates how to replace Hello, World! with redacted, redacted!:

var input = "Hello, World!";
var replacement = "redacted";
var regex = new Regex(@"(Hello), (World)!");
var result = regex.ReplaceGroups(input, replacement);

This is useful for sanitizing logs or other data. Here is an example of regex used to redact passwords in JSON:

[GeneratedRegex(@"""?(?:password|pwd)""?.*?""((?:[^""\\]|\\.)+)""", RegexOptions.Compiled | RegexOptions.IgnoreCase)]
private static partial Regex JsonPasswordProperty();

Null Checking Extensions

These extensions are used to check for null or empty values in objects and throw an exception if they are invalid. The following extensions are included:

  • ThrowIfNull: Throws an exception if the object is null.
  • ThrowIfAnyNull: Throws an exception if any of the objects in the IEnumerable are null.
  • ThrowIfNullOrWhiteSpace : Throws an exception if the string is null or whitespace.
  • ThrowIfAnyNullOrWhiteSpace : Throws an exception if any of the strings in the IEnumerable are null or whitespace.
  • ThrowIfNullOrEmpty : Throws an exception if the string is null or empty.
  • ThrowIfAnyNullOrEmpty : Throws an exception if any of the strings in the IEnumerable are null or empty.

These extensions are useful for validating input parameters in methods. For example:

public MyClass(IInterface interface)
{
    var i = interface.ThrowIfNull(nameof(interface));
}

String Extensions For Encoding And Decoding

String extensions are provided for encoding and decoding different formats. Supported formats are:

Base64
var base64 = "SGVsbG8gV29ybGQ=";
var decoded = base64.Base64Decode();
var encoded = decoded.Base64Encode();
URL
var url = "Hello%20World";
var decoded = url.UrlDecode();
var encoded = decoded.UrlEncode();

Byte Array Extension For Finding BOM (Byte Order Mark)

In some cases, when reading a file, the BOM (Byte Order Mark) is included in the byte array. This extension method allows you to find the BOM in the byte array and remove it.

This extension returns a System.Text.Encoding for the BOM. It can be invoked as follows:

var array = new byte[] { 0xEF, 0xBB, 0xBF }; // UTF-8 BOM
var encoding = array.GetByteOrderMarkEncoding();

Supported BOMs:

  • UTF-8: 0xEF, 0xBB, 0xBF
  • UTF-16 (Little Endian): 0xFF, 0xFE
  • UTF-16 (Big Endian): 0xFE, 0xFF
  • UTF-32 (Little Endian): 0xFF, 0xFE, 0x00, 0x00
  • UTF-32 (Big Endian): 0x00, 0x00, 0xFE, 0xFF

UTF-8 will be returned if BOM is not found or not recognized.

Converters

Json Date / DateTime Converters

Extension of the System.Text.Json.Serialization.JsonConverter class to handle the conversion of dates and datetimes to and from JSON. The converters are used to serialize and deserialize dates and datetimes in the format yyyy-MM-dd and yyyy-MM-ddTHH:mm:ss respectively.

Contributing

We welcome contributions! Please read our contributing guidelines to get started.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Corely.Common:

Package Downloads
Corely.DataAccess

Abstraction of data access layer that allows domain to be agnostic to database or other persistence implementations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 96 3/31/2025
1.0.0 157 3/16/2025