Shadow.Quack.Xml
1.4.1
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
.NET Framework 4.5
This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
dotnet add package Shadow.Quack.Xml --version 1.4.1
NuGet\Install-Package Shadow.Quack.Xml -Version 1.4.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="Shadow.Quack.Xml" Version="1.4.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Shadow.Quack.Xml --version 1.4.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Shadow.Quack.Xml, 1.4.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 Shadow.Quack.Xml as a Cake Addin #addin nuget:?package=Shadow.Quack.Xml&version=1.4.1 // Install Shadow.Quack.Xml as a Cake Tool #tool nuget:?package=Shadow.Quack.Xml&version=1.4.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Shadow Quack XML
This package allows the easy population of values directly from a XML string to a dynamically implemented immutable interface
with the help of the base Shadow Quack package.
This means that there is almost no effort in deserialising from XML to an interface
with no need for concrete implementations or additional code.
Dictionary Example
public interface IWithSimpleDictionary
{
public IDictionary<int, string> TestDic { get; }
}
XmlProxy source = @"
<xml>
<TestDic>
<Item>
<Key>1</Key>
<Value>One</Value>
</Item>
<Item>
<Key>2</Key>
<Value>Two</Value>
</Item>
</TestDic>
</xml>";
var target = Duck.Implement<IWithSimpleDictionary>(source);
Examples
Interface
public interface ITestTarget
{
public IAddress Address { get; }
public ITestTargetSub Sub { get; }
public ICustomer Customer { get; }
public string Name { get; }
public int Number { get; }
public IEnumerable<string> Hobbies { get; }
public IEnumerable<ITestTargetSub> Subs { get; }
public IEnumerable<IAddress> Addresses { get; }
public IEnumerable<int> Ids { get; }
}
public interface ITestTargetSub
{
string Name { get; }
}
public interface IAddress
{
}
public interface ICustomer
{
IEmployment Employment { get; }
string CustomerType { get; }
}
public interface IEmployment
{
string Employer { get; }
}
IEnumerable Example
XmlProxy source = @"
<xml>
<Name>NameValue</Name>
<number>10</number>
<Hobbies>
<Item>Item1</Item>
<Item>item2</Item>
</Hobbies>
</xml>";
var target = Duck.Implement<ITestTarget>(source);
IEnumerable<T> Example
XmlProxy source = @"
<xml>
<Name>NameValue</Name>
<number>10</number>
<Subs>
<Item>
<Name>Value1</Name>
</Item>
<Item>
<Name>Value2</Name>
</Item>
</Subs>
</xml>";
var target = Duck.Implement<ITestTarget>(source);
Sub Interface Example
XmlProxy source = @"
<xml>
<Name>NameValue</Name>
<number>10</number>
<Customer>
<CustomerType>Value2</CustomerType>
<Employment>
<Employer>Employer</Employer>
</Employment>
</Customer>
</xml>";
var target = Duck.Implement<ITestTarget>(source);
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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
.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. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.5
- Shadow.Quack (>= 2.3.0)
-
.NETStandard 2.1
- Shadow.Quack (>= 2.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Updated dependencies, Improved Null Behaviour