Sfoglia il codice sorgente

add deserlizer by type to IContentSerializer

master
Savorboard 7 anni fa
parent
commit
0dcae5b32d
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. +5
    -0
      test/DotNetCore.CAP.Test/CAP.BuilderTest.cs

+ 5
- 0
test/DotNetCore.CAP.Test/CAP.BuilderTest.cs Vedi 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();


Caricamento…
Annulla
Salva