Browse Source

add deserlizer by type to IContentSerializer

master
Savorboard 7 years ago
parent
commit
0dcae5b32d
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      test/DotNetCore.CAP.Test/CAP.BuilderTest.cs

+ 5
- 0
test/DotNetCore.CAP.Test/CAP.BuilderTest.cs View File

@@ -106,6 +106,11 @@ namespace DotNetCore.CAP.Test
throw new NotImplementedException();
}

public object DeSerialize(string content, Type type)
{
throw new NotImplementedException();
}

public string Serialize<T>(T obj)
{
throw new NotImplementedException();


Loading…
Cancel
Save