YngveHestem.GenericParameterCollection
1.0.2-beta04
See the version list below for details.
dotnet add package YngveHestem.GenericParameterCollection --version 1.0.2-beta04
NuGet\Install-Package YngveHestem.GenericParameterCollection -Version 1.0.2-beta04
<PackageReference Include="YngveHestem.GenericParameterCollection" Version="1.0.2-beta04" />
paket add YngveHestem.GenericParameterCollection --version 1.0.2-beta04
#r "nuget: YngveHestem.GenericParameterCollection, 1.0.2-beta04"
// Install YngveHestem.GenericParameterCollection as a Cake Addin #addin nuget:?package=YngveHestem.GenericParameterCollection&version=1.0.2-beta04&prerelease // Install YngveHestem.GenericParameterCollection as a Cake Tool #tool nuget:?package=YngveHestem.GenericParameterCollection&version=1.0.2-beta04&prerelease
GenericParameterCollection
ParameterCollection is a simple to use collection for different parameters and types defined with a key. It supports many of the standard types like int, string, double, float, long, DateTime, bool, byte[], enums and more. It can also support nearly every other objects by easy converting the object to it´s own ParameterCollection, which can be nested togheter as parameters. It also supports many of the parameters as IEnumerables (List, Array, etc.). Methods to convert to and from JSON is also included.
How to use this package
The easiest way to use the package is to download it from nuget: https://www.nuget.org/packages/YngveHestem.GenericParameterCollection/
Supported types
Currently, these C#-types are supported out of the box, with some conversion between themselfs.
- int
- string
- double
- long
- float
- byte[]
- bool
- DateTime
- ParameterCollection
- IEnumerable of int
- IEnumerable of string
- IEnumerable of double
- IEnumerable of long
- IEnumerable of float
- IEnumerable of bool
- IEnumerable of DateTime
- IEnumerable of ParameterCollection
- Enum-types
Converters for other types are easy to implement.
It also supports selecting an entry between different choices. It also support to select multiple choices.
For the possibillity to differentiate if it should be possible to write multiline or not in a string, and if both the date and time is important in a DateTime, this is also possible to differentiate. This can for example be useful if you for example autogenerates input-forms for a gui.
It is also possible to add multiple parameters to a parameter, which can be used to send much more information togheter with a parameter, or be used to validate the input the way a backend wants it in GUI-level.
When should I use this?
The ParameterCollection was not written to be used instead of classes. This was primarly written to be used with Interfaces or other similar situations where the classes who implements an interface can get nearly any number and different type of response from a user. It is also suitable in other situations where much input from a user is required. This as it is relatively easy to create a GUI with usable controls for the user that can be used over and over again, instead of manually define the controls for each parameter/input by hand.
Concrete example
A concrete example will be a program that let you create an image. This program uses an interface to define everything you can do with the image. Like creating different shapes or blurring image.
Different shapes need different forms of parameters. A rectangle will need a starting point and some hight and width sizes. A circle will need a position and a radius. They might also need for example colors or brushes (or not). Then something like this is needed.
Custom converters
While the package has some default converters built in, you can add nearly any value as a parameter by creating custom converters.
The easiest is to save the value as a ParameterCollection. To create a converter for that you can create a class and inherit from the class ParameterCollectionParameterConverter<TValueType>. TValueType will here be the type that should be converted to/from a ParameterCollection.
If you will convert to any other ParameterType or will convert more in same class, you can create a class that implement the IParameterValueConverter.
Code-Examples
Simple use
In the code-block below, you can see some of the different methods in use.
var parameters = new ParameterCollection();
parameters.Add("1+1", 2); // int
parameters.Add("5+5", 10); // int
parameters.Add("Day", true); // bool
parameters.Add("name", "William Wallace", false); // string
parameters.Add("description", "- He was a knight." +
Environment.NewLine + "- He was scottish", true); // string (defined as multiline)
var answer = parameters.GetByKey<int>("1+1"); // returns 2 as an int
var name = parameters.GetByKey("name"); // returns the name as a string
var parameterTypeDay = parameters.GetParameterType("Day"); // returns ParameterType.Bool
var descriptionType = parameters.GetParameterType("description"); // returns ParameterType.String_Multiline
var nameType = parameters.GetParameterType("name"); // returns ParameterType.String
var hasKeyNight = parameters.HasKey("Night"); // returns false
var json = parameters.ToJson(); // Convert the collection to a json-string.
var parameters2 = ParameterCollection.FromJson(json); // Get a new ParameterCollection-object from a json-string.
Add a custom type as a parameter
Below you can see a example for how to define some structures and convert it. The example also show the use of a custom enum, that are supported without any converting.
public class Example
{
public void DefineAnExampleSchool()
{
var school = new ParameterCollection();
school.Add("name", "Au High School");
school.Add("headmaster", new Person
{
Name = "Rick Rickerson",
Gender = Sex.Male,
BirthDate = new DateTime(1960, 1, 23),
Summary = "He has done a lot of work"
}.ToParameterCollection());
}
}
public class Person
{
public string Name { get; set; }
public Sex Gender { get; set; }
public DateTime BirthDate { get; set; }
public string Summary { get; set; }
public ParameterCollection ToParameterCollection()
{
return new ParameterCollection
{
{ "name", Name, false },
{ "gender", Gender },
{ "birthDate", BirthDate, true },
{ "summary", Summary, true }
};
}
public static Person FromParameterCollection(ParameterCollection person)
{
return new Person
{
Name = person.GetByKey<string>("name"),
Gender = person.GetByKey<Sex>("gender"),
BirthDate = person.GetByKey<DateTime>("birthDate"),
Summary = person.GetByKey<string>("summary")
};
}
}
public enum Sex
{
Male,
Female,
Other
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on YngveHestem.GenericParameterCollection:
Package | Downloads |
---|---|
YngveHestem.GenericParameterCollection.EtoForms
This provides controls for using GenericParameterCollection in the GUI-framework Eto.Forms. |
|
YngveHestem.GenericParameterCollection.RadzenBlazor
This provides controls for using GenericParameterCollection in a Blazor-application by using Radzen.Blazor-components. |
|
YngveHestem.GenericParameterCollection.Maui
This provides controls for using GenericParameterCollection in .NET MAUI. |
|
YngveHestem.GenericParameterCollection.Console
This provides controls for using GenericParameterCollection in a Console-application. |
|
YngveHestem.GenericParameterCollection.Avalonia
This provides controls for using GenericParameterCollection in an AvaloniaUI-application. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.7 | 175 | 10/18/2024 |
1.1.7-beta13 | 54 | 10/17/2024 |
1.1.7-beta12 | 56 | 10/16/2024 |
1.1.7-beta11 | 70 | 10/5/2024 |
1.1.7-beta10 | 69 | 10/5/2024 |
1.1.7-beta09 | 66 | 10/2/2024 |
1.1.7-beta08 | 66 | 10/2/2024 |
1.1.7-beta07 | 68 | 10/1/2024 |
1.1.7-beta06 | 63 | 10/1/2024 |
1.1.7-beta05 | 63 | 10/1/2024 |
1.1.7-beta04 | 67 | 9/30/2024 |
1.1.7-beta03 | 68 | 9/30/2024 |
1.1.7-beta02 | 78 | 9/30/2024 |
1.1.7-beta01 | 65 | 9/30/2024 |
1.1.6 | 91 | 9/17/2024 |
1.1.5 | 119 | 7/11/2024 |
1.1.5-beta02 | 62 | 7/11/2024 |
1.1.5-beta01 | 70 | 7/11/2024 |
1.1.4 | 135 | 7/7/2024 |
1.1.3 | 98 | 6/25/2024 |
1.1.2 | 99 | 6/14/2024 |
1.1.1 | 177 | 4/23/2024 |
1.1.0 | 251 | 2/18/2024 |
1.0.2 | 194 | 2/4/2024 |
1.0.2-beta24 | 94 | 1/27/2024 |
1.0.2-beta23 | 204 | 10/28/2023 |
1.0.2-beta22 | 174 | 7/8/2023 |
1.0.2-beta21 | 136 | 7/8/2023 |
1.0.2-beta20 | 136 | 7/8/2023 |
1.0.2-beta19 | 183 | 6/4/2023 |
1.0.2-beta18 | 131 | 6/4/2023 |
1.0.2-beta17 | 123 | 6/4/2023 |
1.0.2-beta16 | 171 | 4/8/2023 |
1.0.2-beta15 | 279 | 4/3/2023 |
1.0.2-beta14 | 113 | 4/2/2023 |
1.0.2-beta13 | 128 | 4/2/2023 |
1.0.2-beta12 | 126 | 4/2/2023 |
1.0.2-beta11 | 138 | 4/2/2023 |
1.0.2-beta10 | 131 | 4/1/2023 |
1.0.2-beta09 | 138 | 4/1/2023 |
1.0.2-beta08 | 134 | 4/1/2023 |
1.0.2-beta07 | 137 | 4/1/2023 |
1.0.2-beta06 | 140 | 4/1/2023 |
1.0.2-beta05 | 136 | 3/22/2023 |
1.0.2-beta04 | 131 | 3/22/2023 |
1.0.2-beta03 | 141 | 3/3/2023 |
1.0.2-beta02 | 150 | 3/2/2023 |
1.0.2-beta01 | 158 | 2/5/2023 |
1.0.1 | 298 | 2/1/2023 |
1.0.0 | 286 | 1/25/2023 |
Version 1.0.2-beta04:
- Fixed a bug in StringParameterConverter
Version 1.0.2-beta03:
- Small bugfixes
- Custom converters are now possible to send in every Parameter-constructur.
Version 1.0.2-beta02:
- Changed how conversion happens, so everything (except Enum, SelectOne and SelectMany), now uses own conversion-classes. This will make it easier to convert to custom types directly.
- Added possibillity to add any object as a parameter (if it exist a converter).
- Added possibillity to add custom converters.
- As custom converters is added, some functions to get value by a specific type are removed.
- Some functions to check if a parameter can convert to a value is added.
Version 1.0.2-beta01:
- Added the possibillity to get the value of an enum as string.
- Added the possibillity to set a new value of an existing parameter.