CSLA.NET
6.0.0
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
//-----------------------------------------------------------------------
8
using
System;
9
10
namespace
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
}
Csla.Windows.CslaActionEventArgs
Event args for an action.
Definition:
CslaActionEventArgs.cs:16
Csla.Windows.CslaActionEventArgs.CslaActionEventArgs
CslaActionEventArgs(string commandName)
Creates an instance of the object.
Definition:
CslaActionEventArgs.cs:23
Csla.Windows.CslaActionEventArgs.CommandName
string CommandName
Gets the name of the command.
Definition:
CslaActionEventArgs.cs:34
Csla.Windows
Definition:
Csla.Windows/ApplicationContextManager.cs:14
Generated by
1.9.2