Commit 0dcae5b3 authored by Savorboard's avatar Savorboard

add deserlizer by type to IContentSerializer

parent 1def7b15
...@@ -106,6 +106,11 @@ namespace DotNetCore.CAP.Test ...@@ -106,6 +106,11 @@ namespace DotNetCore.CAP.Test
throw new NotImplementedException(); throw new NotImplementedException();
} }
public object DeSerialize(string content, Type type)
{
throw new NotImplementedException();
}
public string Serialize<T>(T obj) public string Serialize<T>(T obj)
{ {
throw new NotImplementedException(); throw new NotImplementedException();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment