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
- EventDescriptor.cs
- XmlnsDefinitionAttribute.cs
- HttpListener.cs
- LazyLoadBehavior.cs
- HiddenField.cs
- RequestCachePolicyConverter.cs
- CodeDomLoader.cs
- ListItemCollection.cs
- DataObjectAttribute.cs
- TablePatternIdentifiers.cs
- ClientType.cs
- SizeChangedInfo.cs
- BuiltInExpr.cs
- CustomAttributeSerializer.cs
- TextTreePropertyUndoUnit.cs
- RtfFormatStack.cs
- FillRuleValidation.cs
- PngBitmapEncoder.cs
- EtwTrace.cs
- TableItemStyle.cs
- RankException.cs
- TextBoxAutoCompleteSourceConverter.cs
- ListViewGroupConverter.cs
- ByteAnimationBase.cs
- DBConcurrencyException.cs
- ListViewContainer.cs
- TableSectionStyle.cs
- ActiveDocumentEvent.cs
- SecureUICommand.cs
- ExtendedProperty.cs
- IntegrationExceptionEventArgs.cs
- BaseAsyncResult.cs
- OutputScope.cs
- WindowHelperService.cs
- ReflectionUtil.cs
- PersistenceProviderElement.cs
- _ProxyChain.cs
- LightweightEntityWrapper.cs
- AddInProcess.cs
- XmlDownloadManager.cs
- ApplicationManager.cs
- DefaultEventAttribute.cs
- CharKeyFrameCollection.cs
- CalendarSelectionChangedEventArgs.cs
- UIPropertyMetadata.cs
- BitmapImage.cs
- CodeSnippetTypeMember.cs
- SchemaCollectionCompiler.cs
- MetafileHeader.cs
- XhtmlBasicLiteralTextAdapter.cs
- CodeDefaultValueExpression.cs
- ConfigurationValidatorBase.cs
- ApplicationServiceManager.cs
- DataGridViewUtilities.cs
- _SslSessionsCache.cs
- OperationResponse.cs
- EventData.cs
- SurrogateSelector.cs
- ProcessProtocolHandler.cs
- DefaultTextStore.cs
- PersonalizationStateInfoCollection.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- FrameworkElement.cs
- Int32CollectionConverter.cs
- ToolStripDesignerAvailabilityAttribute.cs
- JsonFormatWriterGenerator.cs
- GrammarBuilderPhrase.cs
- IDictionary.cs
- Shape.cs
- Int64KeyFrameCollection.cs
- TypeConverterHelper.cs
- ExpandSegment.cs
- GradientStopCollection.cs
- FontWeight.cs
- LogStore.cs
- ThumbAutomationPeer.cs
- WeakRefEnumerator.cs
- StateInitialization.cs
- Debugger.cs
- CqlParser.cs
- FrameDimension.cs
- Buffer.cs
- ColumnMap.cs
- WindowsFont.cs
- SafeRightsManagementQueryHandle.cs
- DescendantBaseQuery.cs
- SiteOfOriginPart.cs
- MessageHeader.cs
- CodeExpressionStatement.cs
- HwndProxyElementProvider.cs
- GeneralTransform.cs
- EmbossBitmapEffect.cs
- DefaultValueTypeConverter.cs
- Item.cs
- MultiView.cs
- DataObject.cs
- EventBuilder.cs
- ReadOnlyHierarchicalDataSource.cs
- Hash.cs
- RoutedEventArgs.cs