Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / WebControls / ListViewInsertEventArgs.cs / 1305376 / ListViewInsertEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections.Specialized; using System.ComponentModel; namespace System.Web.UI.WebControls { public class ListViewInsertEventArgs : CancelEventArgs { private ListViewItem _item; private OrderedDictionary _values; public ListViewInsertEventArgs(ListViewItem item) : base(false) { _item = item; } ////// public ListViewItem Item { get { return _item; } } ///Gets the ListViewItem containing the insert item. This property is read-only. ////// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets a OrderedDictionary to populate with inserted row values. This property is read-only. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections.Specialized; using System.ComponentModel; namespace System.Web.UI.WebControls { public class ListViewInsertEventArgs : CancelEventArgs { private ListViewItem _item; private OrderedDictionary _values; public ListViewInsertEventArgs(ListViewItem item) : base(false) { _item = item; } ////// public ListViewItem Item { get { return _item; } } ///Gets the ListViewItem containing the insert item. This property is read-only. ////// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets a OrderedDictionary to populate with inserted row values. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SoundPlayer.cs
- PassportAuthenticationModule.cs
- StringBlob.cs
- Transform.cs
- ListBoxItemWrapperAutomationPeer.cs
- ColorTransformHelper.cs
- TypeSystem.cs
- IgnoreFlushAndCloseStream.cs
- ToggleButtonAutomationPeer.cs
- LabelAutomationPeer.cs
- MeshGeometry3D.cs
- ItemMap.cs
- CheckBox.cs
- SimpleTypesSurrogate.cs
- SparseMemoryStream.cs
- RemotingConfiguration.cs
- DBBindings.cs
- StringHandle.cs
- ClientScriptManagerWrapper.cs
- PropertyGridEditorPart.cs
- Predicate.cs
- SqlRetyper.cs
- XamlSerializerUtil.cs
- TagPrefixCollection.cs
- Missing.cs
- XmlRawWriter.cs
- GridViewCellAutomationPeer.cs
- StringSorter.cs
- XmlSerializerVersionAttribute.cs
- SimpleWorkerRequest.cs
- CodeNamespaceImportCollection.cs
- TextProperties.cs
- MultipartContentParser.cs
- DataGridViewRowCollection.cs
- Polyline.cs
- TypeForwardedToAttribute.cs
- BinarySerializer.cs
- Debug.cs
- AggregateNode.cs
- FormCollection.cs
- TimelineGroup.cs
- DateBoldEvent.cs
- infer.cs
- JpegBitmapEncoder.cs
- PersonalizationState.cs
- IxmlLineInfo.cs
- MimeParameter.cs
- SerialStream.cs
- SeparatorAutomationPeer.cs
- CounterCreationData.cs
- EntityDataSourceView.cs
- CacheAxisQuery.cs
- XmlWriterDelegator.cs
- InkCanvasInnerCanvas.cs
- SqlCommand.cs
- LOSFormatter.cs
- DbBuffer.cs
- EncoderExceptionFallback.cs
- Quaternion.cs
- DecoderExceptionFallback.cs
- NumberFormatInfo.cs
- GeneralTransform3DGroup.cs
- SRDisplayNameAttribute.cs
- AutomationPropertyChangedEventArgs.cs
- DbDataRecord.cs
- ProviderBase.cs
- ActivityWithResultConverter.cs
- AuthenticationConfig.cs
- XmlEncodedRawTextWriter.cs
- TCEAdapterGenerator.cs
- WinFormsSecurity.cs
- PingReply.cs
- SqlReferenceCollection.cs
- RegisteredDisposeScript.cs
- ClientEndpointLoader.cs
- ContentFilePart.cs
- ClickablePoint.cs
- GridViewRowEventArgs.cs
- ServicePerformanceCounters.cs
- WorkflowInstance.cs
- BufferAllocator.cs
- TimeSpan.cs
- InkPresenter.cs
- HttpResponseHeader.cs
- QueryOperationResponseOfT.cs
- _ProxyRegBlob.cs
- MetadataSource.cs
- StaticSiteMapProvider.cs
- ContentValidator.cs
- webbrowsersite.cs
- SinglePageViewer.cs
- ExpressionPrinter.cs
- Image.cs
- HttpStreamMessage.cs
- MasterPage.cs
- DataControlPagerLinkButton.cs
- Empty.cs
- DragDeltaEventArgs.cs
- ValidatedControlConverter.cs
- SwitchExpression.cs