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/SerializationTokenBase.cs

    r3004 r3016  
    44
    55namespace HeuristicLab.Persistence.Core.Tokens {
    6  
     6
     7  /// <summary>
     8  /// Common base class for all serialization tokens.
     9  /// </summary>
    710  public abstract class SerializationTokenBase : ISerializationToken {
     11
     12    /// <summary>
     13    /// The token's name.
     14    /// </summary>
    815    public readonly string Name;
     16
     17    /// <summary>
     18    /// Initializes a new instance of the <see cref="SerializationTokenBase"/> class.
     19    /// </summary>
     20    /// <param name="name">The token name.</param>
    921    public SerializationTokenBase(string name) {
    1022      Name = name;
    1123    }
     24
     25    /// <summary>
     26    /// Returns a <see cref="System.String"/> that represents this instance.
     27    /// </summary>
     28    /// <returns>
     29    /// A <see cref="System.String"/> that represents this instance.
     30    /// </returns>
    1231    public override string ToString() {
    1332      StringBuilder sb = new StringBuilder();
Note: See TracChangeset for help on using the changeset viewer.