Dragonfly.Net 1.32.0

dotnet add package Dragonfly.Net --version 1.32.0
                    
NuGet\Install-Package Dragonfly.Net -Version 1.32.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="Dragonfly.Net" Version="1.32.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dragonfly.Net" Version="1.32.0" />
                    
Directory.Packages.props
<PackageReference Include="Dragonfly.Net" />
                    
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 Dragonfly.Net --version 1.32.0
                    
#r "nuget: Dragonfly.Net, 1.32.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.
#:package Dragonfly.Net@1.32.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Dragonfly.Net&version=1.32.0
                    
Install as a Cake Addin
#tool nuget:?package=Dragonfly.Net&version=1.32.0
                    
Install as a Cake Tool

Dragonfly.Net

A collection of .Net Helpers/Models created by Heather Floyd.

Installation

Nuget Downloads

PM > Install-Package Dragonfly.Net

Features & Usage : Models

StatusMessage

An object used for collecting and reporting information about code operations - a great way to return more detailed information from your custom functions and APIs. You can assign any Exceptions, as well as nest statuses. Explore all the properties and methods for details.

Example Usage:

public StatusMessage GetLocalFilesInfo(out List<FileInfo> FilesList)
{
    FilesList = new List<FileInfo>();
    var returnStatus = new StatusMessage(true);
    returnStatus.ObjectName = "GetLocalFilesInfo";

    IEnumerable<FileInfo> files;
    var statusGetListOfFiles = GetListOfFiles(out files);
    returnStatus.InnerStatuses.Add(statusGetListOfFiles);

    if (files.Any())
    {
        foreach (var fileInfo in files)
        {
            StatusMessage readStatus = new StatusMessage(true);
            readStatus.RunningFunctionName = "GetLocalFilesInfo";
            try
            {
                FilesList.Add(fileInfo);
            }
            catch (Exception e)
            {
                readStatus.Success = false;
                readStatus.Message = $"GetLocalFilesInfo: Failure getting file '{fileInfo.FullName}'.";
                readStatus.SetRelatedException(e);
            }
            returnStatus.InnerStatuses.Add(readStatus);
        }
    }

    return returnStatus;
}
Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5

    • No dependencies.

NuGet packages (14)

Showing the top 5 NuGet packages that depend on Dragonfly.Net:

Package Downloads
Dragonfly.Umbraco7

A collection of Umbraco 7 Helpers & Models (min. Umbraco 7.6.0)

Dragonfly.Framework.Core

A framework for Umbraco 7 Websites - Core Binaries only (min Umbraco 7.9.1)

Dragonfly.Umbraco8

A collection of Umbraco 8 Helpers & Models (min. Umbraco 8.1.0)

Dragonfly.SiteAuditor

A collection of tools to extract data about an Umbraco site. (Dependency on UmbracoCms.Core - min 7.8.0)

Dragonfly.SkybrudRedirectsImporter

Importer for the Skybrud.Redirects package for v8

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.32.0 379 4/14/2023
1.31.0 1,843 11/26/2021
1.30.0 511 10/12/2021
1.29.0 581 3/31/2021
1.28.0 556 3/26/2021
1.27.0 522 3/4/2021
1.26.0 5,255 10/2/2020
1.25.0 740 8/8/2020
1.24.0 655 8/6/2020
1.23.0 637 8/6/2020
1.22.0 680 7/7/2020
1.21.1 650 6/25/2020
1.21.0 609 6/24/2020
1.20.0 681 6/16/2020
1.19.0 637 6/16/2020
1.18.0 675 6/8/2020
1.17.0 644 5/19/2020
1.16.0 737 2/6/2020
1.15.0 778 7/31/2019
1.14.0 722 7/5/2019
1.13.3 759 5/3/2019
1.13.2 790 4/25/2019
1.13.1 750 4/18/2019
1.13.0 779 4/18/2019
1.12.3 784 3/1/2019
1.12.2 790 2/28/2019
1.12.1 912 12/19/2018
1.12.0 950 10/30/2018
1.11.0 1,005 10/8/2018
1.10.2 992 10/5/2018
1.10.1 999 8/27/2018
1.10.0 1,071 8/21/2018
1.9.2 1,071 8/9/2018
1.9.1 1,326 7/18/2018
1.9.0 1,329 7/18/2018
1.8.0 1,473 4/20/2018
1.7.2 1,496 4/6/2018
1.7.1 1,395 3/1/2018
1.7.0 1,352 3/1/2018
1.6.0 4,480 1/19/2018
1.5.7 1,433 12/7/2017
1.5.6 1,453 12/7/2017
1.5.5 1,212 12/1/2017
1.5.0 1,225 11/21/2017
1.4.5 1,168 11/13/2017
1.4.0 1,231 11/3/2017
1.3.0 1,155 11/1/2017
1.2.2 1,152 10/19/2017
1.2.1 1,173 10/11/2017
1.2.0 1,187 10/11/2017
1.1.0 1,216 10/4/2017
1.0.1 1,177 10/2/2017
1.0.0 1,182 9/29/2017

New Urls.GetSafeQueryStringValue<T>() function