Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / ComponentModel / ListChangedEventArgs.cs / 1 / 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.] ///// 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
- SafeRightsManagementHandle.cs
- IndexerHelper.cs
- OrderedDictionary.cs
- VisualBrush.cs
- SvcMapFileLoader.cs
- ExpressionVisitor.cs
- RemoteWebConfigurationHost.cs
- NoneExcludedImageIndexConverter.cs
- CuspData.cs
- TreeNodeCollection.cs
- ProgressiveCrcCalculatingStream.cs
- DynamicMethod.cs
- ControlCollection.cs
- HttpListenerException.cs
- TextTreeUndoUnit.cs
- MarkupObject.cs
- xml.cs
- CodeIterationStatement.cs
- BoundColumn.cs
- TypeUtil.cs
- __ConsoleStream.cs
- RadialGradientBrush.cs
- SiteMapDataSource.cs
- SerializableAuthorizationContext.cs
- ResourceDescriptionAttribute.cs
- BinaryObjectReader.cs
- ProfessionalColors.cs
- ToolStripContentPanelRenderEventArgs.cs
- DBCommand.cs
- ActivatedMessageQueue.cs
- ProgramNode.cs
- XmlQueryStaticData.cs
- FreezableOperations.cs
- HyperLink.cs
- HostedTransportConfigurationBase.cs
- LocationSectionRecord.cs
- FixedSOMTableCell.cs
- SafeViewOfFileHandle.cs
- GroupQuery.cs
- ClientEventManager.cs
- StringValidator.cs
- BamlRecordHelper.cs
- BaseComponentEditor.cs
- OrderByBuilder.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- Ref.cs
- ListDictionary.cs
- RichTextBoxContextMenu.cs
- Calendar.cs
- QueryCursorEventArgs.cs
- XmlUrlResolver.cs
- PartialToken.cs
- ActivityDesignerAccessibleObject.cs
- SQLBoolean.cs
- LifetimeServices.cs
- DateTimePicker.cs
- DragDropManager.cs
- CompiledXpathExpr.cs
- WindowExtensionMethods.cs
- ConsoleKeyInfo.cs
- Model3D.cs
- ApplicationFileCodeDomTreeGenerator.cs
- Error.cs
- CacheAxisQuery.cs
- PingOptions.cs
- PersonalizationAdministration.cs
- SystemColors.cs
- SharedDp.cs
- StringUtil.cs
- EventToken.cs
- FixUp.cs
- DependencyPropertyKey.cs
- SQLCharsStorage.cs
- XmlLanguage.cs
- ParameterRefs.cs
- IncrementalCompileAnalyzer.cs
- RelationshipConverter.cs
- ArgIterator.cs
- GenerateTemporaryTargetAssembly.cs
- XmlBinaryReaderSession.cs
- LightweightCodeGenerator.cs
- BamlLocalizer.cs
- QueueProcessor.cs
- StickyNoteHelper.cs
- ChannelManager.cs
- CuspData.cs
- AliasGenerator.cs
- _NetworkingPerfCounters.cs
- HttpResponseHeader.cs
- RegexTree.cs
- HwndTarget.cs
- HeaderPanel.cs
- TypeConverterHelper.cs
- KeyValuePairs.cs
- HttpPostedFileBase.cs
- ContextMenu.cs
- validationstate.cs
- UrlParameterReader.cs
- DataServiceException.cs
- objectresult_tresulttype.cs