I'm creating a winmd file for use in Windows 8 development. I want to have a great JavaScript (WinJS) experience but can't work out how to have my methods except raw JSON, for example I would like developers to code like this in WinJS:
bar.foo({ bar: 19 })
And inside my C# library I would have something like this
public sealed class Bar
{
public void Foo(JsonObject jsonObject)
{
This compiles but when I try to call foo from WinJS I get an error saying the signature of the method is invalid. I'm assuming this is because it exposes a 'managed' type Windows.Data.Json.JsonObject.
Any ideas how I can work with JSON passed from the WinJS world into .NET (within a WinMD).