Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.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
- Button.cs
- TraceSection.cs
- AsyncCompletedEventArgs.cs
- XmlNodeList.cs
- PropertyChangeTracker.cs
- CodeDomSerializerBase.cs
- MapPathBasedVirtualPathProvider.cs
- RegistrySecurity.cs
- CreateUserErrorEventArgs.cs
- DPTypeDescriptorContext.cs
- RowsCopiedEventArgs.cs
- CultureInfoConverter.cs
- MSAAEventDispatcher.cs
- TypeRestriction.cs
- SqlDataSource.cs
- RoleManagerSection.cs
- ToolStripDropTargetManager.cs
- EnumerableValidator.cs
- PassportAuthentication.cs
- EpmCustomContentWriterNodeData.cs
- AttributeQuery.cs
- XmlDictionaryString.cs
- SoapAttributeOverrides.cs
- PathTooLongException.cs
- FormsAuthenticationUserCollection.cs
- SchemaConstraints.cs
- NavigationService.cs
- AnnotationResourceCollection.cs
- Timer.cs
- Socket.cs
- TypeRefElement.cs
- EnumDataContract.cs
- ObjectQueryExecutionPlan.cs
- UnsafePeerToPeerMethods.cs
- UrlAuthFailureHandler.cs
- DbProviderFactories.cs
- ListCollectionView.cs
- ListDictionaryInternal.cs
- SecurityPermission.cs
- OdbcConnectionStringbuilder.cs
- DetailsViewUpdatedEventArgs.cs
- AliasGenerator.cs
- BuilderElements.cs
- TextServicesManager.cs
- Brush.cs
- ValidationResult.cs
- SchemaTableColumn.cs
- EditCommandColumn.cs
- DataStreams.cs
- MarshalByValueComponent.cs
- CallbackDebugElement.cs
- SqlAliasesReferenced.cs
- SoapReflectionImporter.cs
- XsdDataContractExporter.cs
- SqlCommand.cs
- SetterBaseCollection.cs
- ControlTemplate.cs
- TcpChannelFactory.cs
- Compiler.cs
- StoreContentChangedEventArgs.cs
- SoapIgnoreAttribute.cs
- AddingNewEventArgs.cs
- TreeView.cs
- HierarchicalDataSourceControl.cs
- AtomContentProperty.cs
- EditingCoordinator.cs
- DependencyPropertyKind.cs
- Accessible.cs
- TypeUnloadedException.cs
- DependencyPropertyKey.cs
- XmlSchemaAll.cs
- ReflectTypeDescriptionProvider.cs
- DataConnectionHelper.cs
- OdbcDataReader.cs
- SkipQueryOptionExpression.cs
- QilFactory.cs
- RetrieveVirtualItemEventArgs.cs
- BrowserDefinition.cs
- SQLByteStorage.cs
- Timer.cs
- StateMachine.cs
- SafeRegistryHandle.cs
- DataGridViewCellPaintingEventArgs.cs
- HotSpot.cs
- SizeConverter.cs
- TargetControlTypeAttribute.cs
- WMIInterop.cs
- QueryStringParameter.cs
- _ConnectOverlappedAsyncResult.cs
- DataKeyArray.cs
- WebPartVerb.cs
- BitmapEffectState.cs
- XsltLibrary.cs
- Buffer.cs
- TimelineCollection.cs
- ConfigXmlWhitespace.cs
- NavigateEvent.cs
- OpenTypeLayoutCache.cs
- DataGridRelationshipRow.cs
- XmlNotation.cs