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.
ExecuteEventArgs.cs
Go to the documentation of this file.
1#if !NETFX_CORE && !XAMARIN
2//-----------------------------------------------------------------------
3// <copyright file="ExecuteEventArgs.cs" company="Marimer LLC">
4// Copyright (c) Marimer LLC. All rights reserved.
5// Website: https://cslanet.com
6// </copyright>
7// <summary>Arguments passed to a method invoked</summary>
8//-----------------------------------------------------------------------
9using System;
10using System.Windows;
11
12#if ANDROID
13namespace Csla.Axml
14#elif IOS
15namespace Csla.Iosui
16#else
17namespace Csla.Xaml
18#endif
19{
24 public class ExecuteEventArgs : EventArgs
25 {
26#if !ANDROID && !IOS
31 public FrameworkElement TriggerSource { get; set; }
32#endif
37 public object MethodParameter { get; set; }
42 public object TriggerParameter { get; set; }
43 }
44}
45#endif
Arguments passed to a method invoked by the Execute trigger action.