Shadow.Quack.Xml 1.4.1

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
#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

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 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.4.1 1,092 4/5/2022
1.4.0 408 2/10/2022
1.3.5 411 1/30/2022
1.3.4 410 1/20/2022
1.3.3 284 12/5/2021
1.3.2 400 9/11/2021
1.3.1 332 9/10/2021
1.3.0 317 6/18/2021
1.2.3 340 5/27/2021
1.2.2 275 4/23/2021
1.2.0 328 4/17/2021
1.1.0 254 4/14/2021
1.0.0 269 3/29/2021

Updated dependencies, Improved Null Behaviour