Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/19/08 12:12:39 (16 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.Core namespace (#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/KeyValueEventArgs.cs

    r187 r776  
    44
    55namespace HeuristicLab.Core {
     6  /// <summary>
     7  /// Event arguments to be able to specify the affected key-value pair.
     8  /// </summary>
    69  public class KeyValueEventArgs : EventArgs {
    710
    811    private IItem key;
     12    /// <summary>
     13    /// Gets the affected key.
     14    /// </summary>
    915    public IItem Key {
    1016      get { return key; }
     
    1218
    1319    private IItem value;
     20    /// <summary>
     21    /// Gets the affected value.
     22    /// </summary>
    1423    public IItem Value {
    1524      get { return value; }
    1625    }
    1726
     27    /// <summary>
     28    /// Initializes a new instance of <see cref="KeyValueEventArgs"/> with the given <paramref name="key"/>
     29    /// and <paramref name="value"/>.
     30    /// </summary>
     31    /// <param name="key">The affected key.</param>
     32    /// <param name="value">The affected value.</param>
    1833    public KeyValueEventArgs(IItem key, IItem value) {
    1934      this.key = key;
Note: See TracChangeset for help on using the changeset viewer.