Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / MS / Internal / PtsHost / UpdateRecord.cs / 1 / UpdateRecord.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: UpdateRecord.cs // // Description: Contains information about current state of upate process // in the current container paragraph. // // History: // 05/05/2003 : [....] - moving from Avalon branch. // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using MS.Internal.PtsHost.UnsafeNativeMethods; namespace MS.Internal.PtsHost { // --------------------------------------------------------------------- // Contains information about current state of upate process in the // current container paragraph. // --------------------------------------------------------------------- internal sealed class UpdateRecord { // ------------------------------------------------------------------ // Constructor // ----------------------------------------------------------------- internal UpdateRecord() { Dtr = new DirtyTextRange(0,0,0); FirstPara = SyncPara = null; ChangeType = PTS.FSKCHANGE.fskchNone; Next = null; InProcessing = false; } // ------------------------------------------------------------------ // Merge with next update record. // ------------------------------------------------------------------ internal void MergeWithNext() { Debug.Assert(Next != null); // This is the last UR, cannot merge with next. // Merge DTRs int delta = Next.Dtr.StartIndex - Dtr.StartIndex; // Dtr.StartIndex is not changing Dtr.PositionsAdded += delta + Next.Dtr.PositionsAdded; Dtr.PositionsRemoved += delta + Next.Dtr.PositionsRemoved; // Reasign sync point and next UpdateRecord SyncPara = Next.SyncPara; Next = Next.Next; } // ----------------------------------------------------------------- // Dirty text range. // ------------------------------------------------------------------ internal DirtyTextRange Dtr; // ----------------------------------------------------------------- // The first paragraph affected by the change. // ----------------------------------------------------------------- internal BaseParagraph FirstPara; // ----------------------------------------------------------------- // The first paragraph not affected by DTR, synchronization point for // update process. // ------------------------------------------------------------------ internal BaseParagraph SyncPara; // ----------------------------------------------------------------- // Type of the change (none, new, inside). // ------------------------------------------------------------------ internal PTS.FSKCHANGE ChangeType; // ------------------------------------------------------------------ // Next UpdateRecord. // ----------------------------------------------------------------- internal UpdateRecord Next; // ------------------------------------------------------------------ // Update record is in processing mode? // ----------------------------------------------------------------- internal bool InProcessing; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Evidence.cs
- LocatorGroup.cs
- OleDragDropHandler.cs
- ModelItemExtensions.cs
- DesignerActionVerbList.cs
- UnaryExpressionHelper.cs
- EdmItemCollection.cs
- XmlAttributeOverrides.cs
- PageTheme.cs
- DataBinding.cs
- PropertyGridCommands.cs
- DockAndAnchorLayout.cs
- WindowsToolbar.cs
- EntityCollection.cs
- X509Certificate2.cs
- QueryableFilterRepeater.cs
- Configuration.cs
- QilStrConcatenator.cs
- AutomationEvent.cs
- AssociationEndMember.cs
- XmlSchemaSet.cs
- Scanner.cs
- ProfessionalColors.cs
- SerialReceived.cs
- AuthenticationException.cs
- sapiproxy.cs
- OdbcErrorCollection.cs
- CloudCollection.cs
- UrlPath.cs
- ObjectView.cs
- EntityViewGenerator.cs
- FileDetails.cs
- ProxyWebPartConnectionCollection.cs
- ResourcePermissionBaseEntry.cs
- counter.cs
- Control.cs
- RequestSecurityTokenResponse.cs
- SessionConnectionReader.cs
- SamlSecurityTokenAuthenticator.cs
- CultureInfo.cs
- PanelContainerDesigner.cs
- CalendarDayButton.cs
- FrameworkElementFactory.cs
- WSFederationHttpSecurityElement.cs
- WorkflowOperationBehavior.cs
- ExtentJoinTreeNode.cs
- SystemTcpStatistics.cs
- Brush.cs
- UnionExpr.cs
- TypeProvider.cs
- GregorianCalendar.cs
- FieldToken.cs
- ExpressionEvaluator.cs
- TextTreeUndoUnit.cs
- FactoryGenerator.cs
- ShutDownListener.cs
- ClientConvert.cs
- ApplicationFileCodeDomTreeGenerator.cs
- Tag.cs
- Drawing.cs
- ReachIDocumentPaginatorSerializerAsync.cs
- WorkflowInstanceExtensionCollection.cs
- PathTooLongException.cs
- SizeFConverter.cs
- Vector3DConverter.cs
- ProfileSettingsCollection.cs
- SpecialFolderEnumConverter.cs
- OutKeywords.cs
- PropertyChangingEventArgs.cs
- XmlSchemaParticle.cs
- XmlSchemaComplexContent.cs
- HostedTcpTransportManager.cs
- JoinElimination.cs
- ConnectionInterfaceCollection.cs
- EntityContainerAssociationSetEnd.cs
- DisplayMemberTemplateSelector.cs
- AlternationConverter.cs
- DelegatingConfigHost.cs
- WindowsListViewGroup.cs
- SqlFacetAttribute.cs
- ToolStripMenuItemCodeDomSerializer.cs
- XmlSortKeyAccumulator.cs
- FilterUserControlBase.cs
- ExtensionMethods.cs
- GeneratedCodeAttribute.cs
- CellConstant.cs
- PngBitmapEncoder.cs
- PenLineCapValidation.cs
- ProcessThread.cs
- XmlTextAttribute.cs
- DataControlReferenceCollection.cs
- SpecularMaterial.cs
- Enum.cs
- AutomationAttributeInfo.cs
- BitStack.cs
- FaultPropagationQuery.cs
- XmlSchemaInfo.cs
- FrameworkElement.cs
- WebPartConnectionsCloseVerb.cs
- DataContract.cs