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

    r2 r776  
    2626
    2727namespace HeuristicLab.Core {
     28  /// <summary>
     29  /// Event arguments to be able to specify the affected name.
     30  /// </summary>
    2831  public class NameChangingEventArgs : CancelEventArgs {
    2932    private string myName;
     33    /// <summary>
     34    /// Gets the affected name.
     35    /// </summary>
    3036    public string Name {
    3137      get { return myName; }
    3238    }
    3339
     40    /// <summary>
     41    /// Initializes a new instance of <see cref="NameChangingEventArgs"/>
     42    /// with the specified <paramref name="name"/>.
     43    /// </summary>
     44    /// <param name="name">The affected name.</param>
    3445    public NameChangingEventArgs(string name)
    3546      : base() {
    3647      myName = name;
    3748    }
     49    /// <summary>
     50    /// Initializes a new instance of <see cref="NameChangingEventArgs"/>
     51    /// with the specified <paramref name="name"/> and a flag whether the event has been canceled.
     52    /// </summary>
     53    /// <remarks>Calls constructor of base class <see cref="CancelEventArgs"/>.</remarks>
     54    /// <param name="name">The affected name.</param>
     55    /// <param name="cancel">Flag, whether the event has been canceled.</param>
    3856    public NameChangingEventArgs(string name, bool cancel)
    3957      : base(cancel) {
Note: See TracChangeset for help on using the changeset viewer.