Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / QIL / SubstitutionList.cs / 1305376 / SubstitutionList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Collections; using System.Diagnostics; namespace System.Xml.Xsl.Qil { ////// Data structure for use in CloneAndReplace /// ///Isolates the many QilNode classes from changes in /// the underlying data structure. internal sealed class SubstitutionList { // private ArrayList s; public SubstitutionList() { this.s = new ArrayList(4); } ////// Add a substituion pair /// /// a node to be replaced /// its replacement public void AddSubstitutionPair(QilNode find, QilNode replace) { s.Add(find); s.Add(replace); } ////// Remove the last a substituion pair /// public void RemoveLastSubstitutionPair() { s.RemoveRange(s.Count - 2, 2); } ////// Remove the last N substitution pairs /// public void RemoveLastNSubstitutionPairs(int n) { Debug.Assert(n >= 0, "n must be nonnegative"); if (n > 0) { n *= 2; s.RemoveRange(s.Count - n, n); } } ////// Find the replacement for a node /// /// the node to replace ///null if no replacement is found public QilNode FindReplacement(QilNode n) { Debug.Assert(s.Count % 2 == 0); for (int i = s.Count-2; i >= 0; i-=2) if (s[i] == n) return (QilNode)s[i+1]; return null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlProviderServices.cs
- DesignOnlyAttribute.cs
- RenderOptions.cs
- WebServiceClientProxyGenerator.cs
- regiisutil.cs
- ParallelDesigner.xaml.cs
- OdbcError.cs
- RepeatInfo.cs
- cryptoapiTransform.cs
- WindowsProgressbar.cs
- WindowsPrincipal.cs
- Rectangle.cs
- RegistryPermission.cs
- CursorInteropHelper.cs
- NamespaceQuery.cs
- SqlDataReader.cs
- Operator.cs
- FontStretch.cs
- DbConnectionStringCommon.cs
- FileUpload.cs
- HttpAsyncResult.cs
- SmtpLoginAuthenticationModule.cs
- CaseStatement.cs
- OleAutBinder.cs
- IdlingCommunicationPool.cs
- GraphicsContainer.cs
- StackSpiller.Generated.cs
- ProjectionCamera.cs
- RequestCache.cs
- PreservationFileReader.cs
- GreenMethods.cs
- MethodRental.cs
- ScrollItemPatternIdentifiers.cs
- ConditionCollection.cs
- AutomationElementCollection.cs
- SendMailErrorEventArgs.cs
- Shape.cs
- CommonDialog.cs
- ImageCodecInfoPrivate.cs
- _FtpControlStream.cs
- FormViewRow.cs
- PropertyInfoSet.cs
- HyperLinkColumn.cs
- CanExecuteRoutedEventArgs.cs
- PointAnimationUsingPath.cs
- StringPropertyBuilder.cs
- FactoryGenerator.cs
- XmlRootAttribute.cs
- DependencySource.cs
- RowsCopiedEventArgs.cs
- OleDbSchemaGuid.cs
- ObjectConverter.cs
- Effect.cs
- Util.cs
- DateTimeFormatInfo.cs
- AnchoredBlock.cs
- QilStrConcat.cs
- EventHandlerService.cs
- tooltip.cs
- TextElementEditingBehaviorAttribute.cs
- SQLDecimalStorage.cs
- MimeWriter.cs
- ErrorWebPart.cs
- FormsAuthenticationEventArgs.cs
- SystemGatewayIPAddressInformation.cs
- ImmutablePropertyDescriptorGridEntry.cs
- COM2IManagedPerPropertyBrowsingHandler.cs
- CroppedBitmap.cs
- MessageBox.cs
- NotifyParentPropertyAttribute.cs
- ObjectParameterCollection.cs
- SelectionWordBreaker.cs
- NameValuePermission.cs
- followingsibling.cs
- MediaElementAutomationPeer.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- ResourceDictionaryCollection.cs
- SoapSchemaExporter.cs
- XmlRawWriter.cs
- TextServicesProperty.cs
- DataDocumentXPathNavigator.cs
- FrameDimension.cs
- SemanticResultKey.cs
- Property.cs
- ButtonColumn.cs
- DataGridViewSelectedCellCollection.cs
- RelationshipManager.cs
- Debug.cs
- CompoundFileIOPermission.cs
- LogLogRecordHeader.cs
- WebColorConverter.cs
- EventProviderTraceListener.cs
- ApplicationGesture.cs
- ImageMap.cs
- DataMemberAttribute.cs
- FileEnumerator.cs
- OracleParameter.cs
- CollectionType.cs
- ValueQuery.cs
- DataGridViewComboBoxColumn.cs