CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
CslaActionEventArgs.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="CslaActionEventArgs.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Event args for an action.</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Windows
11{
15 public class CslaActionEventArgs : EventArgs
16 {
23 public CslaActionEventArgs(string commandName)
24 {
25 _commandName = commandName;
26 }
27
28 private string _commandName;
29
33 public string CommandName
34 {
35 get { return _commandName; }
36 }
37 }
38}
CslaActionEventArgs(string commandName)
Creates an instance of the object.
string CommandName
Gets the name of the command.