Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewCommandEventArgs.cs / 1305376 / GridViewCommandEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; using System.Diagnostics.CodeAnalysis; ////// 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. /// [SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers")] 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.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
- Fonts.cs
- AttributeProviderAttribute.cs
- MailDefinitionBodyFileNameEditor.cs
- InfoCardKeyedHashAlgorithm.cs
- OleDbInfoMessageEvent.cs
- LineInfo.cs
- XPathBinder.cs
- FigureHelper.cs
- StatusBar.cs
- EventLogTraceListener.cs
- BooleanSwitch.cs
- SubMenuStyleCollectionEditor.cs
- TreeNodeCollection.cs
- BaseValidator.cs
- RegexCaptureCollection.cs
- BaseProcessor.cs
- MimePart.cs
- StyleBamlTreeBuilder.cs
- WindowAutomationPeer.cs
- UserControlParser.cs
- CustomAttribute.cs
- ToolstripProfessionalRenderer.cs
- XmlBinaryReader.cs
- RawKeyboardInputReport.cs
- AdornerDecorator.cs
- StringKeyFrameCollection.cs
- FontUnit.cs
- Utils.cs
- _TransmitFileOverlappedAsyncResult.cs
- ImageKeyConverter.cs
- ContentType.cs
- ConnectivityStatus.cs
- WebPartEventArgs.cs
- PersistenceTypeAttribute.cs
- SqlComparer.cs
- Normalizer.cs
- CodeVariableReferenceExpression.cs
- FileLoadException.cs
- XmlTextReaderImplHelpers.cs
- RevocationPoint.cs
- Propagator.Evaluator.cs
- ListItemsPage.cs
- TypeUnloadedException.cs
- CheckoutException.cs
- Assign.cs
- SqlUdtInfo.cs
- TextReader.cs
- StatusBarDrawItemEvent.cs
- RuleEngine.cs
- ParameterCollectionEditorForm.cs
- CacheForPrimitiveTypes.cs
- TableLayoutStyleCollection.cs
- VisualBrush.cs
- MessageBodyDescription.cs
- List.cs
- AxisAngleRotation3D.cs
- Lease.cs
- Instrumentation.cs
- SubpageParagraph.cs
- TextLineBreak.cs
- FormsAuthenticationConfiguration.cs
- _LocalDataStore.cs
- ObjectDataSourceMethodEventArgs.cs
- EntityContainerRelationshipSet.cs
- WebServicesDescriptionAttribute.cs
- PropertyDescriptorGridEntry.cs
- ProviderBase.cs
- URLString.cs
- HttpListenerContext.cs
- ComPlusTypeLoader.cs
- SecurityContextCookieSerializer.cs
- EditingCommands.cs
- IgnoreSection.cs
- WebMessageEncodingBindingElement.cs
- SQLRoleProvider.cs
- CachedCompositeFamily.cs
- TraceXPathNavigator.cs
- NumericUpDownAcceleration.cs
- HttpContext.cs
- DataTableMapping.cs
- NumberFormatInfo.cs
- SaveFileDialog.cs
- JsonDeserializer.cs
- ExpressionEvaluator.cs
- StringArrayConverter.cs
- RemotingSurrogateSelector.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- CopyNodeSetAction.cs
- HealthMonitoringSectionHelper.cs
- StyleBamlRecordReader.cs
- SQLInt16Storage.cs
- ProtocolsConfigurationHandler.cs
- FrameworkElementFactoryMarkupObject.cs
- TaskScheduler.cs
- DocumentsTrace.cs
- HtmlString.cs
- RepeatButtonAutomationPeer.cs
- CreateUserWizard.cs
- ArraySubsetEnumerator.cs
- DbProviderSpecificTypePropertyAttribute.cs