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

    r61 r776  
    2525
    2626namespace HeuristicLab.Core {
     27  /// <summary>
     28  /// Event arguments to be able to specify the affected alias.
     29  /// </summary>
    2730  public class AliasEventArgs : EventArgs {
    2831    private string myAlias;
     32    /// <summary>
     33    /// Gets the affected alias.
     34    /// </summary>
    2935    public string Alias {
    3036      get { return myAlias; }
    3137    }
    3238
     39    /// <summary>
     40    /// Initializes a new instance of <see cref="AliasEventArgs"/> with the given <paramref name="alias"/>.
     41    /// </summary>
     42    /// <param name="alias">The affected alias.</param>
    3343    public AliasEventArgs(string alias) {
    3444      myAlias = alias;
Note: See TracChangeset for help on using the changeset viewer.