Cbor bug fixes
This commit is contained in:
@@ -15,6 +15,12 @@ namespace Example.Backend
|
||||
Console.WriteLine(humanName + " is approaching");
|
||||
}
|
||||
|
||||
public Task SetFingerPrint(int[] fingerPrint)
|
||||
{
|
||||
Console.WriteLine(fingerPrint.Length);
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
public void OnPrintExternal(IPage p0, RequestContext ro)
|
||||
{
|
||||
OnPrint?.Invoke(p0, ro);
|
||||
|
||||
@@ -13,6 +13,11 @@ namespace Example.Frontend
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
public Task SetFingerPrint(int[] fingerPrint)
|
||||
{
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
public void OnPrintExternal(IPage p0, RequestContext ro)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -51,6 +51,11 @@ class Program
|
||||
|
||||
using (var disposingPrinter = factory.Create("Test"))
|
||||
{
|
||||
disposingPrinter.SetFingerPrint(new[] { 1, 2, 3 }).ContinueWith(r =>
|
||||
{
|
||||
Console.WriteLine(r.Status);
|
||||
});
|
||||
|
||||
DemoCheck.CreatingPrinter = true;
|
||||
disposingPrinter.OnPrint += (_, _) =>
|
||||
{
|
||||
|
||||
@@ -15,5 +15,6 @@ namespace Example.Shared
|
||||
event Action<IPage, RequestContext> OnPrint;
|
||||
[Untrusted]
|
||||
Task SomeoneIsApproaching(string humanName);
|
||||
Task SetFingerPrint(int[] fingerPrint);
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,7 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using mROA.Abstract;
|
||||
using mROA.Implementation;
|
||||
|
||||
@@ -34,6 +36,19 @@ namespace mROA.Cbor
|
||||
return so.UniversalValue;
|
||||
}
|
||||
|
||||
|
||||
if (type is { IsArray: true })
|
||||
{
|
||||
var elementType = type.GetElementType();
|
||||
var array = Array.CreateInstance(elementType, _properties.Count);
|
||||
Array.Copy(_properties.Select(i => Convert.ChangeType(i,elementType)).ToArray(), array, _properties.Count);
|
||||
return array;
|
||||
}
|
||||
|
||||
|
||||
if (typeof(IList).IsAssignableFrom(type))
|
||||
return Convert.ChangeType(_properties.Select(i => Convert.ChangeType(i, type.GetElementType())).ToList(), type);
|
||||
|
||||
var instance = Activator.CreateInstance(type);
|
||||
if (instance == null)
|
||||
return null;
|
||||
|
||||
@@ -3,6 +3,9 @@
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.1</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<Version>2.0.1</Version>
|
||||
<LangVersion>9</LangVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
||||
|
||||
Reference in New Issue
Block a user