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
- SQLConvert.cs
- MsdtcClusterUtils.cs
- DbDeleteCommandTree.cs
- Compiler.cs
- FormsAuthentication.cs
- EDesignUtil.cs
- HitTestWithGeometryDrawingContextWalker.cs
- IgnoreSectionHandler.cs
- FlowPosition.cs
- CodeLinePragma.cs
- BinaryFormatterWriter.cs
- XmlWriterDelegator.cs
- AmbiguousMatchException.cs
- ProviderBase.cs
- SessionStateModule.cs
- TransportConfigurationTypeElementCollection.cs
- X509ChainPolicy.cs
- SlipBehavior.cs
- DataSourceXmlClassAttribute.cs
- SafeNativeMethods.cs
- MouseGestureConverter.cs
- ToolStripContentPanelDesigner.cs
- PageFunction.cs
- GeneratedContractType.cs
- Int32RectConverter.cs
- VectorValueSerializer.cs
- Application.cs
- SecurityBindingElement.cs
- OleDbReferenceCollection.cs
- XmlEntity.cs
- OleDbInfoMessageEvent.cs
- xamlnodes.cs
- ScaleTransform3D.cs
- SettingsPropertyIsReadOnlyException.cs
- HtmlAnchor.cs
- DataContractSerializerSection.cs
- TraceUtility.cs
- InstanceDescriptor.cs
- DataSourceCache.cs
- DeadCharTextComposition.cs
- MarshalDirectiveException.cs
- AffineTransform3D.cs
- WriteableBitmap.cs
- NavigationEventArgs.cs
- HtmlInputFile.cs
- VersionedStream.cs
- WorkflowCompensationBehavior.cs
- CatalogZone.cs
- CryptographicAttribute.cs
- SrgsElement.cs
- Bitmap.cs
- ContainerParagraph.cs
- HttpRequest.cs
- CompModSwitches.cs
- IISUnsafeMethods.cs
- ResourceProviderFactory.cs
- SqlResolver.cs
- SqlCacheDependencySection.cs
- DiscoveryServiceExtension.cs
- DoubleAnimationBase.cs
- PasswordBoxAutomationPeer.cs
- TrackingMemoryStream.cs
- ServiceHostingEnvironmentSection.cs
- GPPOINTF.cs
- FileChangesMonitor.cs
- AuthenticationModulesSection.cs
- Queue.cs
- MSG.cs
- TextElementEnumerator.cs
- CodeDOMProvider.cs
- Command.cs
- Point3DAnimationUsingKeyFrames.cs
- HttpBindingExtension.cs
- IsolatedStorageFilePermission.cs
- ColorPalette.cs
- BypassElementCollection.cs
- DataGridViewElement.cs
- TextRenderer.cs
- KnownIds.cs
- Crypto.cs
- CommandID.cs
- ObjectIDGenerator.cs
- SortedDictionary.cs
- StorageMappingItemLoader.cs
- TreeViewBindingsEditorForm.cs
- StylusPointDescription.cs
- RequestQueue.cs
- ServiceDescription.cs
- XmlSchemaRedefine.cs
- XmlCompatibilityReader.cs
- FixedBufferAttribute.cs
- RegistryKey.cs
- AuthorizationRuleCollection.cs
- XmlReflectionImporter.cs
- TextRenderer.cs
- StylusShape.cs
- GridItemPatternIdentifiers.cs
- LiteralLink.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- AdCreatedEventArgs.cs