![]() |
VOOZH | about |
dotnet add package Dragonfly.Net --version 1.32.0
NuGet\Install-Package Dragonfly.Net -Version 1.32.0
<PackageReference Include="Dragonfly.Net" Version="1.32.0" />
<PackageVersion Include="Dragonfly.Net" Version="1.32.0" />Directory.Packages.props
<PackageReference Include="Dragonfly.Net" />Project file
paket add Dragonfly.Net --version 1.32.0
#r "nuget: Dragonfly.Net, 1.32.0"
#:package Dragonfly.Net@1.32.0
#addin nuget:?package=Dragonfly.Net&version=1.32.0Install as a Cake Addin
#tool nuget:?package=Dragonfly.Net&version=1.32.0Install as a Cake Tool
A collection of .Net Helpers/Models created by Heather Floyd.
PM > Install-Package Dragonfly.Net
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 | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net45 net45 is compatible. net451 net451 was computed. net452 net452 was computed. net46 net46 was computed. net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
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 |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.32.0 | 488 | 4/14/2023 |
| 1.31.0 | 1,941 | 11/26/2021 |
| 1.30.0 | 614 | 10/12/2021 |
| 1.29.0 | 670 | 3/31/2021 |
| 1.28.0 | 654 | 3/26/2021 |
| 1.27.0 | 617 | 3/4/2021 |
| 1.26.0 | 5,396 | 10/2/2020 |
| 1.25.0 | 846 | 8/8/2020 |
| 1.24.0 | 760 | 8/6/2020 |
| 1.23.0 | 728 | 8/6/2020 |
| 1.22.0 | 773 | 7/7/2020 |
| 1.21.1 | 758 | 6/25/2020 |
| 1.21.0 | 710 | 6/24/2020 |
| 1.20.0 | 781 | 6/16/2020 |
| 1.19.0 | 741 | 6/16/2020 |
| 1.18.0 | 788 | 6/8/2020 |
| 1.17.0 | 750 | 5/19/2020 |
| 1.16.0 | 844 | 2/6/2020 |
| 1.15.0 | 886 | 7/31/2019 |
| 1.14.0 | 837 | 7/5/2019 |
New Urls.GetSafeQueryStringValue<T>() function