CycleStrategy.Read C# (CSharp) Méthode

Read() public méthode

This method is used to read an object from the specified node. In order to get the root type the field and node map are specified. The field represents the annotated method or field within the deserialized object. The node map is used to get the attributes used to describe the objects identity, or in the case of an existing object it contains an object reference.
public Read ( Type type, NodeMap node, Dictionary, map ) : Value,
type Type /// the method or field in the deserialized object ///
node NodeMap /// this is the XML element attributes to read ///
map Dictionary, /// this is the session map used for deserialization ///
Résultat Value,
      public Value Read(Type type, NodeMap node, Dictionary map) {
         ReadGraph graph = read.Find(map);
         if(graph != null) {
            return graph.Read(type, node);
         }
         return null;
      }
      /// <summary>