Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewUpdateEventArgs.cs / 1 / DetailsViewUpdateEventArgs.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;
///
/// Provides data for some events.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class DetailsViewUpdateEventArgs : CancelEventArgs {
private object _commandArgument;
private OrderedDictionary _values;
private OrderedDictionary _keys;
private OrderedDictionary _oldValues;
///
/// Initializes a new instance of the
/// class.
///
public DetailsViewUpdateEventArgs(object commandArgument) : base(false) {
this._commandArgument = commandArgument;
}
///
/// Gets the argument to the command posted to the . This property is read-only.
///
public object CommandArgument {
get {
return _commandArgument;
}
}
///
/// Gets a keyed list to populate with updated row values. This property is read-only.
///
public IOrderedDictionary Keys {
get {
if (_keys == null) {
_keys = new OrderedDictionary();
}
return _keys;
}
}
///
/// Gets a OrderedDictionary 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 pre-edit row values. This property is read-only.
///
public IOrderedDictionary OldValues {
get {
if (_oldValues == null) {
_oldValues = new OrderedDictionary();
}
return _oldValues;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// 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;
///
/// Provides data for some events.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class DetailsViewUpdateEventArgs : CancelEventArgs {
private object _commandArgument;
private OrderedDictionary _values;
private OrderedDictionary _keys;
private OrderedDictionary _oldValues;
///
/// Initializes a new instance of the
/// class.
///
public DetailsViewUpdateEventArgs(object commandArgument) : base(false) {
this._commandArgument = commandArgument;
}
///
/// Gets the argument to the command posted to the . This property is read-only.
///
public object CommandArgument {
get {
return _commandArgument;
}
}
///
/// Gets a keyed list to populate with updated row values. This property is read-only.
///
public IOrderedDictionary Keys {
get {
if (_keys == null) {
_keys = new OrderedDictionary();
}
return _keys;
}
}
///
/// Gets a OrderedDictionary 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 pre-edit row values. This property is read-only.
///
public IOrderedDictionary OldValues {
get {
if (_oldValues == null) {
_oldValues = new OrderedDictionary();
}
return _oldValues;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpListenerRequest.cs
- VScrollBar.cs
- TreeNodeCollectionEditor.cs
- SpellCheck.cs
- EncryptedPackageFilter.cs
- ChannelServices.cs
- WsiProfilesElementCollection.cs
- SecurityPolicySection.cs
- HasCopySemanticsAttribute.cs
- ToolStripGrip.cs
- PackageStore.cs
- UrlPath.cs
- RemoteWebConfigurationHostStream.cs
- UICuesEvent.cs
- UnmanagedMemoryStreamWrapper.cs
- Stopwatch.cs
- CleanUpVirtualizedItemEventArgs.cs
- SmtpDigestAuthenticationModule.cs
- HeaderedContentControl.cs
- SortableBindingList.cs
- CheckedPointers.cs
- BrowsableAttribute.cs
- odbcmetadatacolumnnames.cs
- ControlAdapter.cs
- DataProtection.cs
- XMLUtil.cs
- Button.cs
- Error.cs
- Marshal.cs
- TableAdapterManagerGenerator.cs
- MouseEvent.cs
- KeySplineConverter.cs
- DesignerAttribute.cs
- SystemException.cs
- QuaternionKeyFrameCollection.cs
- DeviceContext.cs
- LinearKeyFrames.cs
- SoapUnknownHeader.cs
- QuadraticBezierSegment.cs
- DelegateSerializationHolder.cs
- IndexedString.cs
- FrameworkContextData.cs
- BitSet.cs
- AnimationClock.cs
- ComNativeDescriptor.cs
- DocobjHost.cs
- AutoResetEvent.cs
- SequentialWorkflowHeaderFooter.cs
- ToolTipAutomationPeer.cs
- XmlSchemaDocumentation.cs
- AnonymousIdentificationSection.cs
- GridViewHeaderRowPresenter.cs
- HotCommands.cs
- CodeObjectCreateExpression.cs
- StringDictionary.cs
- SafeRightsManagementSessionHandle.cs
- SafeArrayTypeMismatchException.cs
- Range.cs
- DataGridViewComboBoxCell.cs
- DesignBindingPropertyDescriptor.cs
- DefaultPrintController.cs
- PanningMessageFilter.cs
- recordstatefactory.cs
- StringOutput.cs
- UriTemplateMatchException.cs
- ObjectSpanRewriter.cs
- ByteAnimation.cs
- BindToObject.cs
- Blend.cs
- OdbcConnectionFactory.cs
- CuspData.cs
- TreeView.cs
- StylusCaptureWithinProperty.cs
- CodeArrayIndexerExpression.cs
- TableCell.cs
- MenuStrip.cs
- ObjectQuery_EntitySqlExtensions.cs
- AppDomainAttributes.cs
- HttpProfileGroupBase.cs
- RegisteredArrayDeclaration.cs
- CodeConstructor.cs
- PropertyDescriptor.cs
- TitleStyle.cs
- ReadContentAsBinaryHelper.cs
- DataGridViewElement.cs
- PrinterResolution.cs
- XmlWriterTraceListener.cs
- HttpModulesSection.cs
- ResourceContainer.cs
- NameScope.cs
- OraclePermission.cs
- DataGridCell.cs
- ImageBrush.cs
- LogSwitch.cs
- TextParagraphProperties.cs
- DBSqlParserTable.cs
- PropertyGrid.cs
- NestedContainer.cs
- InputBindingCollection.cs
- HtmlTextArea.cs