Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewUpdateEventArgs.cs / 1 / GridViewUpdateEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class GridViewUpdateEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public GridViewUpdateEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } ///Initializes a new instance of the ////// class. /// public IOrderedDictionary Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with updated row values. This property is read-only. ////// public IOrderedDictionary NewValues { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } ///Gets a OrderedDictionary to populate with updated row values. This property is read-only. ////// public IOrderedDictionary OldValues { get { if (_oldValues == null) { _oldValues = new OrderedDictionary(); } return _oldValues; } } ///Gets a OrderedDictionary to populate with pre-edit row values. This property is read-only. ////// public int RowIndex { get { return _rowIndex; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets the int argument to the command posted to the ///. This property is read-only. // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class GridViewUpdateEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public GridViewUpdateEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } ///Initializes a new instance of the ////// class. /// public IOrderedDictionary Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with updated row values. This property is read-only. ////// public IOrderedDictionary NewValues { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } ///Gets a OrderedDictionary to populate with updated row values. This property is read-only. ////// public IOrderedDictionary OldValues { get { if (_oldValues == null) { _oldValues = new OrderedDictionary(); } return _oldValues; } } ///Gets a OrderedDictionary to populate with pre-edit row values. This property is read-only. ////// public int RowIndex { get { return _rowIndex; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets the int argument to the command posted to the ///. This property is read-only.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CompiledELinqQueryState.cs
- ClientSponsor.cs
- AnnotationMap.cs
- TranslateTransform3D.cs
- CryptoHelper.cs
- Point.cs
- Rijndael.cs
- PngBitmapDecoder.cs
- BindingOperations.cs
- InputLangChangeRequestEvent.cs
- TableSectionStyle.cs
- StylusButton.cs
- SocketElement.cs
- XmlSchemaAppInfo.cs
- ServicesUtilities.cs
- CdpEqualityComparer.cs
- InvalidateEvent.cs
- EventDescriptor.cs
- PerformanceCounterPermissionEntryCollection.cs
- Region.cs
- GradientBrush.cs
- UndoManager.cs
- DnsPermission.cs
- MenuItemCollectionEditor.cs
- MultiTargetingUtil.cs
- FlowDocumentPage.cs
- TransformerConfigurationWizardBase.cs
- Msec.cs
- EncoderBestFitFallback.cs
- Point3DAnimation.cs
- CachingParameterInspector.cs
- ChangeProcessor.cs
- MultipleViewPatternIdentifiers.cs
- DataGridParentRows.cs
- ColumnWidthChangedEvent.cs
- ReflectionTypeLoadException.cs
- storepermission.cs
- SessionPageStateSection.cs
- DataGridViewImageCell.cs
- SchemaImporterExtensionElement.cs
- PreDigestedSignedInfo.cs
- XmlSecureResolver.cs
- ClientApiGenerator.cs
- ConfigurationPermission.cs
- ParallelTimeline.cs
- CompilerCollection.cs
- WinEventTracker.cs
- _DigestClient.cs
- DesignTable.cs
- TypeToken.cs
- BinHexEncoding.cs
- DBBindings.cs
- WorkItem.cs
- ManagementObjectSearcher.cs
- SessionStateContainer.cs
- FixedPageProcessor.cs
- ParallelTimeline.cs
- Comparer.cs
- ToolboxCategory.cs
- XmlSignificantWhitespace.cs
- ContextDataSourceView.cs
- EditorPartDesigner.cs
- GeometryConverter.cs
- EmptyCollection.cs
- CodeCastExpression.cs
- Camera.cs
- RoutedEventConverter.cs
- HierarchicalDataBoundControlAdapter.cs
- ColumnMapCopier.cs
- SqlDataRecord.cs
- HtmlMeta.cs
- EffectiveValueEntry.cs
- SerializationStore.cs
- ValidationErrorEventArgs.cs
- ExcCanonicalXml.cs
- StorageMappingFragment.cs
- TimeSpanStorage.cs
- TopClause.cs
- MachineKeySection.cs
- _Rfc2616CacheValidators.cs
- SmtpMail.cs
- AddInBase.cs
- RtfControlWordInfo.cs
- EntityEntry.cs
- DrawTreeNodeEventArgs.cs
- EventLogPermission.cs
- BrowserCapabilitiesFactoryBase.cs
- WebContext.cs
- XmlExtensionFunction.cs
- DateTimeFormat.cs
- EncodingInfo.cs
- ItemsControlAutomationPeer.cs
- _AutoWebProxyScriptEngine.cs
- TemplateParser.cs
- BatchStream.cs
- ErrorActivity.cs
- LineSegment.cs
- LocationSectionRecord.cs
- BamlResourceDeserializer.cs
- util.cs