//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.Web.UI.WebControls { using System; using System.Diagnostics.CodeAnalysis; /// /// Provides data for some events. /// public class FormViewCommandEventArgs : CommandEventArgs { private object _commandSource; /// /// Initializes a new instance of the /// class. /// [SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers")] public FormViewCommandEventArgs(object commandSource, CommandEventArgs originalArgs) : base(originalArgs) { this._commandSource = commandSource; } /// /// Gets the source of the command. This property is read-only. /// public object CommandSource { get { return _commandSource; } } /// /// Set by the user to skip databound or datasource handling of the event. /// public bool Handled { get; set; } } }