![]() |
VOOZH | about |
dotnet add package Simplify.Xml.Sources --version 1.4.1
NuGet\Install-Package Simplify.Xml.Sources -Version 1.4.1
<PackageReference Include="Simplify.Xml.Sources" Version="1.4.1" />
<PackageVersion Include="Simplify.Xml.Sources" Version="1.4.1" />Directory.Packages.props
<PackageReference Include="Simplify.Xml.Sources" />Project file
paket add Simplify.Xml.Sources --version 1.4.1
#r "nuget: Simplify.Xml.Sources, 1.4.1"
#:package Simplify.Xml.Sources@1.4.1
#addin nuget:?package=Simplify.Xml.Sources&version=1.4.1Install as a Cake Addin
#tool nuget:?package=Simplify.Xml.Sources&version=1.4.1Install as a Cake Tool
Provides XML extension functions and XmlSerializer.
Available at NuGet as binary package or source package
// Gets the outer XML string of an XNode (inner XML and itself).
public static string OuterXml(this XNode element);
// Gets the inner XML string of an XNode.
public static string InnerXml(this XNode element);
// Gets the descendant element using an XPath 1.0 expression.
public static XElement? Get(this XNode? node, string xpath);
public static XElement? Get(this XNode? node, string xpath, IXmlNamespaceResolver? resolver);
// Gets the collection of descendant elements using an XPath 1.0 expression.
public static IEnumerable<XElement> GetMany(this XNode? node, string xpath);
public static IEnumerable<XElement> GetMany(this XNode? node, string xpath, IXmlNamespaceResolver? resolver);
// Removes all XML namespaces from a string containing XML data.
public static string RemoveAllXmlNamespaces(this string xmlData);
// Serializes the specified items list to a XML string.
public static string Serialize<T>(IList<T> items);
// Serialize the object to XElement.
public static XElement ToXElement<T>(T obj);
// Deserialize the XElement to object.
public static T FromXElement<T>(XElement xElement);
Learn more about Target Frameworks and .NET Standard.
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.4.1 | 92 | 6/25/2026 |
| 1.4.0 | 1,700 | 5/25/2024 |
| 1.3.1 | 1,945 | 8/1/2023 |
| 1.3.0 | 1,793 | 4/19/2021 |
| 1.2.1 | 974 | 2/26/2021 |
| 1.2.0 | 982 | 1/26/2021 |
| 1.1.2 | 1,195 | 10/23/2020 |
| 1.1.1 | 1,293 | 4/6/2020 |
| 1.1.0 | 3,676 | 9/28/2019 |
| 1.0.4 | 3,143 | 3/19/2018 |
| 1.0.3 | 4,101 | 10/23/2014 |
| 1.0.2 | 3,840 | 8/8/2014 |
| 1.0.1 | 2,315 | 8/3/2014 |
See CHANGELOG.md for details