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/Tokens/PrimitiveToken.cs

    r3004 r3016  
    77  /// </summary>
    88  public class PrimitiveToken : SerializationTokenBase {
     9
     10    /// <summary>
     11    /// The type's id.
     12    /// </summary>
    913    public readonly int TypeId;
     14
     15    /// <summary>
     16    /// The object's id.
     17    /// </summary>
    1018    public readonly int? Id;
     19
     20    /// <summary>
     21    /// The serialized data.
     22    /// </summary>
    1123    public readonly ISerialData SerialData;
     24
     25    /// <summary>
     26    /// Initializes a new instance of the <see cref="PrimitiveToken"/> class.
     27    /// </summary>
     28    /// <param name="name">The name.</param>
     29    /// <param name="typeId">The type's id.</param>
     30    /// <param name="id">The onbject's id.</param>
     31    /// <param name="serialData">The serialized data.</param>
    1232    public PrimitiveToken(string name, int typeId, int? id, ISerialData serialData)
    1333      : base(name) {
Note: See TracChangeset for help on using the changeset viewer.