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
- EventLogPermissionEntry.cs
- ByteStream.cs
- TableProviderWrapper.cs
- UnitySerializationHolder.cs
- SystemIcmpV6Statistics.cs
- HttpHandlerActionCollection.cs
- DbConnectionHelper.cs
- ProcessThreadDesigner.cs
- DynamicQueryableWrapper.cs
- Size.cs
- TreeView.cs
- FieldBuilder.cs
- XPathArrayIterator.cs
- Queue.cs
- JsonReaderWriterFactory.cs
- InfoCardAsymmetricCrypto.cs
- CaseInsensitiveComparer.cs
- TrackingProfile.cs
- UnsafeNetInfoNativeMethods.cs
- RolePrincipal.cs
- EncoderExceptionFallback.cs
- HttpVersion.cs
- SelectionChangedEventArgs.cs
- ConnectionPointCookie.cs
- SerializationFieldInfo.cs
- ListViewItemMouseHoverEvent.cs
- TransformerTypeCollection.cs
- XmlEntityReference.cs
- MappingItemCollection.cs
- QilXmlReader.cs
- XmlNodeChangedEventArgs.cs
- VisualBrush.cs
- TextEffectResolver.cs
- StyleModeStack.cs
- ScrollProperties.cs
- ConstraintCollection.cs
- TextLineResult.cs
- StateItem.cs
- DefaultCompensation.cs
- ListViewHitTestInfo.cs
- UniqueCodeIdentifierScope.cs
- SqlParameterizer.cs
- ModifierKeysValueSerializer.cs
- DispatcherFrame.cs
- TreeNodeEventArgs.cs
- FixedSOMElement.cs
- ObjectStateFormatter.cs
- XmlSchemaDatatype.cs
- AnchoredBlock.cs
- InternalBufferManager.cs
- ToolstripProfessionalRenderer.cs
- DataGridViewComboBoxCell.cs
- MetadataArtifactLoaderCompositeFile.cs
- DataGridViewCheckBoxCell.cs
- ConfigXmlReader.cs
- SchemaCollectionPreprocessor.cs
- GridViewUpdateEventArgs.cs
- DataObjectSettingDataEventArgs.cs
- InfoCardKeyedHashAlgorithm.cs
- EventMappingSettings.cs
- InputProviderSite.cs
- XmlTextReaderImpl.cs
- InternalMappingException.cs
- SmtpReplyReader.cs
- UMPAttributes.cs
- DataServiceExpressionVisitor.cs
- XamlSerializerUtil.cs
- CalendarData.cs
- ConfigXmlWhitespace.cs
- DmlSqlGenerator.cs
- SqlBulkCopyColumnMapping.cs
- EtwProvider.cs
- CompositeDispatchFormatter.cs
- HtmlInputCheckBox.cs
- DictionaryEntry.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- __ComObject.cs
- NextPreviousPagerField.cs
- LinkArea.cs
- OleDbWrapper.cs
- DashStyles.cs
- Model3DGroup.cs
- MDIWindowDialog.cs
- EventArgs.cs
- ObjectTypeMapping.cs
- TextTreeTextElementNode.cs
- ServiceKnownTypeAttribute.cs
- SoapConverter.cs
- RSAOAEPKeyExchangeDeformatter.cs
- SoapServerProtocol.cs
- PrimitiveCodeDomSerializer.cs
- DataSourceControlBuilder.cs
- HostingEnvironment.cs
- CardSpaceSelector.cs
- BitStream.cs
- DesignBinding.cs
- ServiceModelActivationSectionGroup.cs
- StaticContext.cs
- MouseGestureConverter.cs
- MimeWriter.cs