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

    r3004 r3016  
    88  /// </summary> 
    99  public class Tag {
     10
     11    /// <summary>
     12    /// Gets the name.
     13    /// </summary>
     14    /// <value>The name.</value>
    1015    public string Name { get; private set; }
     16
     17    /// <summary>
     18    /// Gets the value.
     19    /// </summary>
     20    /// <value>The value.</value>
    1121    public object Value { get; set; }
    1222
     23    /// <summary>
     24    /// Initializes a new instance of the <see cref="Tag"/> class.
     25    /// </summary>
     26    /// <param name="name">The name.</param>
     27    /// <param name="value">The value.</param>
    1328    public Tag(string name, object value) {
    1429      Name = name;
     
    1631    }
    1732
     33    /// <summary>
     34    /// Initializes a new instance of the <see cref="Tag"/> class
     35    /// whithout a name.
     36    /// </summary>
     37    /// <param name="value">The value.</param>
    1838    public Tag(object value) {
    1939      Name = null;
Note: See TracChangeset for help on using the changeset viewer.