Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / ListChangedEventArgs.cs / 1305376 / ListChangedEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- //can not fix - Everett breaking change [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Scope="member", Target="System.ComponentModel.ListChangedEventArgs..ctor(System.ComponentModel.ListChangedType,System.Int32,System.ComponentModel.PropertyDescriptor)")] [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Scope="member", Target="System.ComponentModel.ListChangedEventArgs..ctor(System.ComponentModel.ListChangedType,System.ComponentModel.PropertyDescriptor)")] namespace System.ComponentModel { using Microsoft.Win32; using System; using System.Diagnostics; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class ListChangedEventArgs : EventArgs { private ListChangedType listChangedType; private int newIndex; private int oldIndex; private PropertyDescriptor propDesc; ///[To be supplied.] ////// public ListChangedEventArgs(ListChangedType listChangedType, int newIndex) : this(listChangedType, newIndex, -1) { } ///[To be supplied.] ////// public ListChangedEventArgs(ListChangedType listChangedType, int newIndex, PropertyDescriptor propDesc) : this(listChangedType, newIndex) { this.propDesc = propDesc; this.oldIndex = newIndex; } ///[To be supplied.] ////// public ListChangedEventArgs(ListChangedType listChangedType, PropertyDescriptor propDesc) { Debug.Assert(listChangedType != ListChangedType.Reset, "this constructor is used only for changes in the list MetaData"); Debug.Assert(listChangedType != ListChangedType.ItemAdded, "this constructor is used only for changes in the list MetaData"); Debug.Assert(listChangedType != ListChangedType.ItemDeleted, "this constructor is used only for changes in the list MetaData"); Debug.Assert(listChangedType != ListChangedType.ItemChanged, "this constructor is used only for changes in the list MetaData"); this.listChangedType = listChangedType; this.propDesc = propDesc; } ///[To be supplied.] ////// public ListChangedEventArgs(ListChangedType listChangedType, int newIndex, int oldIndex) { Debug.Assert(listChangedType != ListChangedType.PropertyDescriptorAdded, "this constructor is used only for item changed in the list"); Debug.Assert(listChangedType != ListChangedType.PropertyDescriptorDeleted, "this constructor is used only for item changed in the list"); Debug.Assert(listChangedType != ListChangedType.PropertyDescriptorChanged, "this constructor is used only for item changed in the list"); this.listChangedType = listChangedType; this.newIndex = newIndex; this.oldIndex = oldIndex; } ///[To be supplied.] ////// public ListChangedType ListChangedType { get { return listChangedType; } } ///[To be supplied.] ////// public int NewIndex { get { return newIndex; } } ///[To be supplied.] ////// public int OldIndex { get { return oldIndex; } } ///[To be supplied.] ////// public PropertyDescriptor PropertyDescriptor { get { return propDesc; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DBNull.cs
- CommentEmitter.cs
- DataDocumentXPathNavigator.cs
- NotifyIcon.cs
- ClientBuildManagerCallback.cs
- ConsumerConnectionPointCollection.cs
- XPathNavigatorReader.cs
- AncillaryOps.cs
- RadioButton.cs
- _ConnectOverlappedAsyncResult.cs
- ClickablePoint.cs
- PropertyDescriptorComparer.cs
- DictionaryEntry.cs
- DataGridSortCommandEventArgs.cs
- TableColumnCollection.cs
- TextChange.cs
- ContentHostHelper.cs
- LockedActivityGlyph.cs
- SqlSelectStatement.cs
- NumberFormatter.cs
- XmlDataLoader.cs
- Cell.cs
- ILGen.cs
- QueryValue.cs
- ExpressionPrefixAttribute.cs
- ActivityTypeResolver.xaml.cs
- ContourSegment.cs
- XmlEntityReference.cs
- MediaSystem.cs
- COMException.cs
- SBCSCodePageEncoding.cs
- CodeVariableReferenceExpression.cs
- CollectionsUtil.cs
- ClockController.cs
- TextEndOfParagraph.cs
- ConnectionStringsSection.cs
- XmlExtensionFunction.cs
- designeractionlistschangedeventargs.cs
- RadioButtonList.cs
- IdentityHolder.cs
- ReadOnlyHierarchicalDataSourceView.cs
- CodeCastExpression.cs
- SubpageParaClient.cs
- DummyDataSource.cs
- GeneratedContractType.cs
- WpfKnownType.cs
- Single.cs
- InitializingNewItemEventArgs.cs
- CheckBoxPopupAdapter.cs
- SchemaMerger.cs
- WebPartTransformerCollection.cs
- DecimalStorage.cs
- SqlFormatter.cs
- EventMappingSettingsCollection.cs
- NonSerializedAttribute.cs
- KeyedCollection.cs
- TraceUtility.cs
- AppDomain.cs
- DesignerForm.cs
- ImageUrlEditor.cs
- FontDriver.cs
- PriorityBinding.cs
- ObjectItemNoOpAssemblyLoader.cs
- CmsInterop.cs
- ClientUriBehavior.cs
- ZipIOCentralDirectoryFileHeader.cs
- XPathItem.cs
- InvalidProgramException.cs
- IPEndPointCollection.cs
- Pts.cs
- XmlTextReaderImpl.cs
- SqlResolver.cs
- AttachmentService.cs
- EnumerationRangeValidationUtil.cs
- UserControlBuildProvider.cs
- UpdatePanelTrigger.cs
- ServiceSecurityAuditBehavior.cs
- WorkflowApplicationAbortedEventArgs.cs
- XmlCharType.cs
- SystemPens.cs
- CheckBoxList.cs
- EditorZoneBase.cs
- CompiledXpathExpr.cs
- RoutedCommand.cs
- InfoCardKeyedHashAlgorithm.cs
- DataGridViewComboBoxColumn.cs
- MaterialGroup.cs
- COM2ExtendedTypeConverter.cs
- _WinHttpWebProxyDataBuilder.cs
- DataGridViewRowEventArgs.cs
- Misc.cs
- WindowsContainer.cs
- FixedSOMElement.cs
- CompensatableTransactionScopeActivityDesigner.cs
- ColorBuilder.cs
- XpsSerializationManagerAsync.cs
- MessageEnumerator.cs
- XmlQualifiedName.cs
- Lease.cs
- Triangle.cs