Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- FrameworkElement.cs
- Compiler.cs
- EnvelopedSignatureTransform.cs
- DrawingImage.cs
- ColumnMapProcessor.cs
- ModelServiceImpl.cs
- FileDialog_Vista_Interop.cs
- EditBehavior.cs
- ZipFileInfoCollection.cs
- GcSettings.cs
- GlyphRunDrawing.cs
- XmlNullResolver.cs
- SHA512Managed.cs
- MD5.cs
- ExpressionEditorAttribute.cs
- RegexCompilationInfo.cs
- Matrix.cs
- MemoryFailPoint.cs
- loginstatus.cs
- EndPoint.cs
- ScrollBar.cs
- SerializationAttributes.cs
- SubMenuStyleCollection.cs
- CodeConstructor.cs
- COM2TypeInfoProcessor.cs
- Point3DAnimation.cs
- ReceiveActivityValidator.cs
- XAMLParseException.cs
- FloatAverageAggregationOperator.cs
- ZipFileInfo.cs
- AsyncOperation.cs
- CustomPeerResolverService.cs
- StylusPlugin.cs
- WeakEventTable.cs
- AssemblyAttributesGoHere.cs
- IIS7UserPrincipal.cs
- TextElementEnumerator.cs
- ReferenceTypeElement.cs
- EditingScope.cs
- PriorityBinding.cs
- RequestQueryParser.cs
- WindowHideOrCloseTracker.cs
- CodeDOMUtility.cs
- ApplicationInfo.cs
- ObjectComplexPropertyMapping.cs
- OpacityConverter.cs
- TextBoxDesigner.cs
- PackageDigitalSignature.cs
- MarshalByRefObject.cs
- ScrollChrome.cs
- DataGrid.cs
- LineUtil.cs
- ProvideValueServiceProvider.cs
- AssertSection.cs
- MachineKeySection.cs
- RegexWorker.cs
- OutputCacheModule.cs
- DateTimeFormat.cs
- TableParagraph.cs
- StyleBamlRecordReader.cs
- CustomBinding.cs
- SingleObjectCollection.cs
- TextSerializer.cs
- RotateTransform.cs
- DataFieldConverter.cs
- PipelineModuleStepContainer.cs
- Point4DConverter.cs
- WebPartUtil.cs
- ZoneLinkButton.cs
- ApplicationDirectoryMembershipCondition.cs
- DocComment.cs
- InvalidContentTypeException.cs
- VisualBasicSettingsConverter.cs
- CustomWebEventKey.cs
- PathSegment.cs
- EntityCommandDefinition.cs
- AsyncWaitHandle.cs
- DiagnosticsConfiguration.cs
- DateTimeSerializationSection.cs
- COM2TypeInfoProcessor.cs
- SafeSecurityHandles.cs
- SafeReadContext.cs
- NullableDoubleSumAggregationOperator.cs
- DesignTimeTemplateParser.cs
- ImmComposition.cs
- ProxyWebPartManager.cs
- ClientConvert.cs
- ListView.cs
- ProviderException.cs
- SelectionListComponentEditor.cs
- NetworkAddressChange.cs
- MinimizableAttributeTypeConverter.cs
- SqlInternalConnectionTds.cs
- RequestCacheValidator.cs
- ContainerUIElement3D.cs
- AtomServiceDocumentSerializer.cs
- PageBuildProvider.cs
- ObjectPropertyMapping.cs
- DataControlFieldHeaderCell.cs
- BitmapSizeOptions.cs