Free cookie consent management tool by TermsFeed Policy Generator

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

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

File:
1 edited

Legend:

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

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