Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewCommandEventArgs.cs / 1 / GridViewCommandEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class GridViewCommandEventArgs : CommandEventArgs { private GridViewRow _row; private object _commandSource; ///Provides data for some ///events. /// public GridViewCommandEventArgs(GridViewRow row, object commandSource, CommandEventArgs originalArgs) : base(originalArgs) { this._row = row; this._commandSource = commandSource; } ///Initializes a new instance of the ////// class. /// public GridViewCommandEventArgs(object commandSource, CommandEventArgs originalArgs) : base(originalArgs) { this._commandSource = commandSource; } ///Initializes a new instance of the ////// class. /// public object CommandSource { get { return _commandSource; } } ///Gets the source of the command. This property is read-only. ////// internal GridViewRow Row { get { return _row; } } } }Gets the row in the ///that was clicked. This property is read-only.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Win32.cs
- Double.cs
- BamlLocalizationDictionary.cs
- SingletonConnectionReader.cs
- CommandValueSerializer.cs
- basevalidator.cs
- SplitterEvent.cs
- SyndicationDeserializer.cs
- CodeSubDirectory.cs
- ValueConversionAttribute.cs
- HttpProfileGroupBase.cs
- Exceptions.cs
- UnsafeNativeMethods.cs
- AbandonedMutexException.cs
- ADMembershipUser.cs
- IdentityReference.cs
- AssemblyAttributes.cs
- Fonts.cs
- TaskFormBase.cs
- ButtonBaseAutomationPeer.cs
- Aggregates.cs
- AppDomainEvidenceFactory.cs
- RemoveStoryboard.cs
- HuffModule.cs
- RenderData.cs
- AssemblyHash.cs
- CodeParameterDeclarationExpression.cs
- XmlUnspecifiedAttribute.cs
- basecomparevalidator.cs
- DataGridViewColumnCollectionEditor.cs
- XmlSchemaSimpleContent.cs
- DispatcherOperation.cs
- CodeTypeConstructor.cs
- PersonalizationState.cs
- DynamicDocumentPaginator.cs
- BaseTemplateBuildProvider.cs
- BitVec.cs
- ListViewCancelEventArgs.cs
- TextTrailingCharacterEllipsis.cs
- SchemaMerger.cs
- ExternalCalls.cs
- ContextInformation.cs
- BrowserInteropHelper.cs
- ProxyManager.cs
- oledbconnectionstring.cs
- EventLogPermissionEntryCollection.cs
- StringPropertyBuilder.cs
- PseudoWebRequest.cs
- TextHidden.cs
- Drawing.cs
- DesignerToolboxInfo.cs
- PathData.cs
- DropShadowBitmapEffect.cs
- BaseTemplateBuildProvider.cs
- AttributeCollection.cs
- FreezableDefaultValueFactory.cs
- HeaderLabel.cs
- Point4DConverter.cs
- ColorTransformHelper.cs
- TextModifier.cs
- ReverseInheritProperty.cs
- TableSectionStyle.cs
- Authorization.cs
- DocumentEventArgs.cs
- __Filters.cs
- CellRelation.cs
- RandomNumberGenerator.cs
- TextEditorCopyPaste.cs
- DataGridDesigner.cs
- DataRow.cs
- WindowsFormsHost.cs
- _CookieModule.cs
- Type.cs
- PeerContact.cs
- ReversePositionQuery.cs
- DiagnosticsConfigurationHandler.cs
- WorkflowValidationFailedException.cs
- StringArrayConverter.cs
- EntityException.cs
- ApplicationSecurityInfo.cs
- CodeRegionDirective.cs
- VerticalAlignConverter.cs
- SHA256Managed.cs
- NumericPagerField.cs
- ValidationHelper.cs
- Control.cs
- AppModelKnownContentFactory.cs
- SystemUdpStatistics.cs
- PolicyLevel.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- PolyQuadraticBezierSegment.cs
- TreeNode.cs
- Image.cs
- NamedPermissionSet.cs
- XmlSchemaComplexContent.cs
- ColumnMapCopier.cs
- ParameterCollectionEditorForm.cs
- ColumnWidthChangedEvent.cs
- WebPartDisplayModeEventArgs.cs
- CultureSpecificStringDictionary.cs