public void Serialize(Stream destination, object graph)
        {
            var shell = new DynamicShell {
                Value = graph
            };

            model.Serialize(destination, shell, Context);
        }
예제 #2
0
 public void Serialize(Stream destination, object graph)
 {
     var shell = new DynamicShell { Value = graph };
     model.Serialize(destination, shell, Context);
 }