MiniXML 1.0.7.1
Suggested Alternatives
dotnet add package MiniXML --version 1.0.7.1
NuGet\Install-Package MiniXML -Version 1.0.7.1
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="MiniXML" Version="1.0.7.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MiniXML --version 1.0.7.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MiniXML, 1.0.7.1"
#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.
// Install MiniXML as a Cake Addin #addin nuget:?package=MiniXML&version=1.0.7.1 // Install MiniXML as a Cake Tool #tool nuget:?package=MiniXML&version=1.0.7.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MiniXM - Version 1.0.7
Added extra extension methods for fast procuding element attributes.
element.Attr(name, string value)
element.Attr(name, T value)
whereT
isstruct
element.Attr(name, T value, IFormatProvide provider)
whereT
isstruct
Added tuple-as-value based formatting attribute values.
element.Attr(name, ((T value, string format) tuple)
element.Attr(name, ((T value, string format, IFormatProvider provider) tuple)
Added dynamic-as-value types for settings attributes as anonymous types (also accept
tuple-as-value
for custom formatting the values)
var obj = new
{
attr1 = "value1",
attr2 = (byte)255,
attr3 = (sbyte)-127,
attrN = ...
attrFormatted = (value, "myformat")
attrFormattedExtended = (value, "myformat", myformatProvider)
};
element.Attrs(obj);
Full example:
using System.Diagnostics;
using MiniXML;
using Xml = MiniXML.Xml;
// random guid created by VS 2022 Guid Generator Tool
var guid = Guid.Parse("3F4B87B6-88C0-405F-9811-508B5AAD20F5");
var root = Xml.Element("foo")
.Attr("count", 1)
.Attr("max_count", 2U)
.Attr("flag", (byte)255)
.Attr("max_dgram_size", ushort.MaxValue)
.Attr("is_true", true)
.Attr("is_false", false)
.Attr("my_float", (5f, "F3"))
.Attr("my_double", (10D, "F5"))
.Attr("my_decimal", (15M, "F5"))
.Attr("my_guid", guid)
.Attr("my_guid_B", (guid, "B"))
.Attr("my_guid_D", (guid, "D"))
.Attr("my_guid_N", (guid, "N"))
.Attr("my_guid_X", (guid, "X"))
.Attr("unix_epoch_as_hex_x2", (DateTime.UnixEpoch.ToFileTime(), "X2"))
.Attr("unix_epoch_as_hex_x8", (DateTime.UnixEpoch.ToFileTime(), "X8"))
.Attrs(new
{
foo = "bar",
my_byte = (byte)32,
my_sbyte = (sbyte)64,
my_formatted_guid_as_N = (guid, "N")
});
Notes
- The value for type
IFormatProvider
for all methods defaults toCultureInfo.InvariantCulture
, if you need provide an attribute with different culture ulse respective methods instead with your formatter. NumberFormatInfo
is a implementation ofIFormatProvider
.
Product | Versions 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.