Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/14/10 00:42:28 (14 years ago)
Author:
epitzer
Message:

Update API docs. (#548)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Core/DeSerializer.cs

    r3005 r3016  
    7171    /// that contains information about the serializers to use
    7272    /// for every type and their type ids.
    73     /// </summary>   
     73    /// </summary>
     74    /// <param name="typeCache">The type cache.</param>
    7475    public Deserializer(
    7576      IEnumerable<TypeMapping> typeCache) {
     
    8384    }
    8485
    85     private Dictionary<Type, object> serializerInstances = new Dictionary<Type, object>();   
    86 
     86    private Dictionary<Type, object> serializerInstances = new Dictionary<Type, object>();
     87
     88    /// <summary>
     89    /// Adds additionaly type information.
     90    /// </summary>
     91    /// <param name="typeMapping">The new type mapping.</param>
    8792    public void AddTypeInfo(TypeMapping typeMapping) {
    8893      if (typeIds.ContainsKey(typeMapping.Id))
     
    109114    /// <summary>
    110115    /// Process the token stream and deserialize an instantate a new object graph.
    111     /// </summary>   
     116    /// </summary>
     117    /// <param name="tokens">The tokens.</param>
     118    /// <returns>A fresh object filled with fresh data.</returns>
    112119    public object Deserialize(IEnumerable<ISerializationToken> tokens) {
    113120      foreach (ISerializationToken token in tokens) {
Note: See TracChangeset for help on using the changeset viewer.