Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/12/11 10:12:50 (13 years ago)
Author:
epitzer
Message:

#1530 Split type and serializer tokens and include special handling for CachedTypeSerializer (this should also fix #1527)

Location:
branches/PersistenceSpeedUp/HeuristicLab.Persistence/3.3/Core/Tokens
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceSpeedUp/HeuristicLab.Persistence/3.3/Core/Tokens/TypeToken.cs

    r5445 r6737  
    4040
    4141    /// <summary>
    42     /// The full type name of the serialized used to
    43     /// serialize the type.
    44     /// </summary>
    45     public readonly string Serializer;
    46 
    47     /// <summary>
    4842    /// Initializes a new instance of the <see cref="TypeToken"/> class.
    4943    /// </summary>
     
    5246    /// <param name="serializer">The full name of the serializer
    5347    /// used to serialize the type.</param>
    54     public TypeToken(int id, string typeName, string serializer) {
     48    public TypeToken(int id, string typeName) {
    5549      Id = id;
    5650      TypeName = typeName;
    57       Serializer = serializer;
    5851    }
    5952  }
Note: See TracChangeset for help on using the changeset viewer.