Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / CopyCodeAction.cs / 1305376 / CopyCodeAction.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Diagnostics; using System.Xml; using System.Xml.XPath; using System.Collections; internal class CopyCodeAction : Action { // Execution states: private const int Outputting = 2; private ArrayList copyEvents; // Copy code action events internal CopyCodeAction() { this.copyEvents = new ArrayList(); } internal void AddEvent(Event copyEvent) { this.copyEvents.Add(copyEvent); } internal void AddEvents(ArrayList copyEvents) { Debug.Assert(copyEvents != null); this.copyEvents.AddRange(copyEvents); } internal override void ReplaceNamespaceAlias(Compiler compiler) { int count = this.copyEvents.Count; for(int i = 0; i< count; i++) { ((Event) this.copyEvents[i]).ReplaceNamespaceAlias(compiler); } } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); Debug.Assert(this.copyEvents != null && this.copyEvents.Count > 0); switch (frame.State) { case Initialized: frame.Counter = 0; frame.State = Outputting; goto case Outputting; case Outputting: Debug.Assert(frame.State == Outputting); while (processor.CanContinue) { Debug.Assert(frame.Counter < this.copyEvents.Count); Event copyEvent = (Event) this.copyEvents[frame.Counter]; if (copyEvent.Output(processor, frame) == false) { // This event wasn't processed break; } if (frame.IncrementCounter() >= this.copyEvents.Count) { frame.Finished(); break; } } break; default: Debug.Fail("Invalid CopyCodeAction execution state"); break; } } internal override DbgData GetDbgData(ActionFrame frame) { Debug.Assert(frame.Counter < this.copyEvents.Count); return ((Event)this.copyEvents[frame.Counter]).DbgData; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Diagnostics; using System.Xml; using System.Xml.XPath; using System.Collections; internal class CopyCodeAction : Action { // Execution states: private const int Outputting = 2; private ArrayList copyEvents; // Copy code action events internal CopyCodeAction() { this.copyEvents = new ArrayList(); } internal void AddEvent(Event copyEvent) { this.copyEvents.Add(copyEvent); } internal void AddEvents(ArrayList copyEvents) { Debug.Assert(copyEvents != null); this.copyEvents.AddRange(copyEvents); } internal override void ReplaceNamespaceAlias(Compiler compiler) { int count = this.copyEvents.Count; for(int i = 0; i< count; i++) { ((Event) this.copyEvents[i]).ReplaceNamespaceAlias(compiler); } } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); Debug.Assert(this.copyEvents != null && this.copyEvents.Count > 0); switch (frame.State) { case Initialized: frame.Counter = 0; frame.State = Outputting; goto case Outputting; case Outputting: Debug.Assert(frame.State == Outputting); while (processor.CanContinue) { Debug.Assert(frame.Counter < this.copyEvents.Count); Event copyEvent = (Event) this.copyEvents[frame.Counter]; if (copyEvent.Output(processor, frame) == false) { // This event wasn't processed break; } if (frame.IncrementCounter() >= this.copyEvents.Count) { frame.Finished(); break; } } break; default: Debug.Fail("Invalid CopyCodeAction execution state"); break; } } internal override DbgData GetDbgData(ActionFrame frame) { Debug.Assert(frame.Counter < this.copyEvents.Count); return ((Event)this.copyEvents[frame.Counter]).DbgData; } } } // 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
- GenericEnumerator.cs
- RefreshPropertiesAttribute.cs
- SerializationObjectManager.cs
- UidPropertyAttribute.cs
- SendMessageContent.cs
- Scalars.cs
- ToolStripPanel.cs
- DbConnectionHelper.cs
- SelectorItemAutomationPeer.cs
- SharedUtils.cs
- ConnectionManagementElementCollection.cs
- pingexception.cs
- AnimationLayer.cs
- StateRuntime.cs
- BaseCodePageEncoding.cs
- UIntPtr.cs
- ImageListImage.cs
- TypeNameConverter.cs
- IApplicationTrustManager.cs
- XpsS0ValidatingLoader.cs
- ClientSettingsProvider.cs
- _ContextAwareResult.cs
- DataGridViewSelectedCellCollection.cs
- BitmapEffectGroup.cs
- EntityDataSourceQueryBuilder.cs
- RelationHandler.cs
- BinaryMessageEncoder.cs
- HtmlMeta.cs
- NotifyCollectionChangedEventArgs.cs
- EdmItemCollection.OcAssemblyCache.cs
- PlatformCulture.cs
- WebRequestModuleElement.cs
- SiteIdentityPermission.cs
- XPathNodeInfoAtom.cs
- DataSourceControlBuilder.cs
- Button.cs
- GeometryCollection.cs
- SettingsPropertyValue.cs
- querybuilder.cs
- Misc.cs
- SendingRequestEventArgs.cs
- ProgressiveCrcCalculatingStream.cs
- WindowsRegion.cs
- SelfIssuedSamlTokenFactory.cs
- SqlReorderer.cs
- QueryMatcher.cs
- AdRotatorDesigner.cs
- SQLDoubleStorage.cs
- TextMarkerSource.cs
- OdbcConnectionOpen.cs
- ArraySegment.cs
- DocumentXmlWriter.cs
- EdmRelationshipRoleAttribute.cs
- CollectionConverter.cs
- Assert.cs
- tabpagecollectioneditor.cs
- BitmapImage.cs
- AliasedSlot.cs
- HMACSHA256.cs
- DataGridView.cs
- XhtmlBasicPageAdapter.cs
- AutoSizeComboBox.cs
- SessionStateItemCollection.cs
- WorkflowApplicationCompletedException.cs
- SqlDataSource.cs
- SimpleBitVector32.cs
- MultiSelectRootGridEntry.cs
- HtmlInputText.cs
- CommandLibraryHelper.cs
- SystemException.cs
- OracleRowUpdatedEventArgs.cs
- PersonalizationAdministration.cs
- Padding.cs
- TemplatePartAttribute.cs
- XmlSerializationReader.cs
- DES.cs
- DataGridTableCollection.cs
- HeaderCollection.cs
- SqlDataSourceEnumerator.cs
- ISAPIApplicationHost.cs
- Clause.cs
- Rectangle.cs
- CuspData.cs
- FigureParagraph.cs
- ShutDownListener.cs
- ConfigurationManagerInternalFactory.cs
- ValidationHelper.cs
- DataBoundControlAdapter.cs
- DomainLiteralReader.cs
- RoutedEventHandlerInfo.cs
- ListViewPagedDataSource.cs
- ManifestSignatureInformation.cs
- RegistryConfigurationProvider.cs
- BindingExpressionUncommonField.cs
- ComplexType.cs
- XPathNodeList.cs
- WebPartsSection.cs
- RuntimeConfigurationRecord.cs
- QilTypeChecker.cs
- MyContact.cs