Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / CopyCodeAction.cs / 1 / 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
- WindowsListBox.cs
- MatrixIndependentAnimationStorage.cs
- TextRangeSerialization.cs
- IsolatedStorage.cs
- EventItfInfo.cs
- NullReferenceException.cs
- CounterSampleCalculator.cs
- RectangleHotSpot.cs
- NetNamedPipeBindingCollectionElement.cs
- UInt64.cs
- StreamWriter.cs
- PathData.cs
- WrappingXamlSchemaContext.cs
- ButtonBase.cs
- SrgsElementFactory.cs
- QueryExtender.cs
- StringComparer.cs
- FormatException.cs
- RequestCacheEntry.cs
- ListView.cs
- XmlDocumentFragment.cs
- RulePatternOps.cs
- QEncodedStream.cs
- ImageField.cs
- GlyphRunDrawing.cs
- PrivilegeNotHeldException.cs
- FileRecordSequence.cs
- ErrorFormatter.cs
- ToolBarButton.cs
- FontSourceCollection.cs
- XmlSchemas.cs
- Decoder.cs
- assertwrapper.cs
- BasePropertyDescriptor.cs
- QuestionEventArgs.cs
- RtfControlWordInfo.cs
- RelationshipSet.cs
- Cast.cs
- SqlBulkCopyColumnMappingCollection.cs
- TypeDescriptionProvider.cs
- AddingNewEventArgs.cs
- TypeProvider.cs
- NaturalLanguageHyphenator.cs
- DetailsViewDeletedEventArgs.cs
- RelatedCurrencyManager.cs
- WeakReferenceKey.cs
- AsmxEndpointPickerExtension.cs
- Identity.cs
- TypeSystem.cs
- XmlElementElementCollection.cs
- BitmapVisualManager.cs
- InputReport.cs
- Stacktrace.cs
- TextEmbeddedObject.cs
- SelectionRangeConverter.cs
- ProgressBarRenderer.cs
- SynchronizedDispatch.cs
- ConfigurationStrings.cs
- MetadataUtilsSmi.cs
- FontSizeConverter.cs
- EventInfo.cs
- XmlSchemaExternal.cs
- MembershipPasswordException.cs
- StatusBarAutomationPeer.cs
- ServicePoint.cs
- SimpleWebHandlerParser.cs
- DataGridSortCommandEventArgs.cs
- XPathNavigatorReader.cs
- Perspective.cs
- ArraySubsetEnumerator.cs
- StateMachineWorkflow.cs
- CommonRemoteMemoryBlock.cs
- StrokeDescriptor.cs
- XmlUTF8TextWriter.cs
- OutputCacheModule.cs
- ToolZone.cs
- ItemCollection.cs
- SystemTcpConnection.cs
- AttributeTable.cs
- Preprocessor.cs
- TextServicesDisplayAttributePropertyRanges.cs
- SystemColorTracker.cs
- Constants.cs
- DefaultCommandConverter.cs
- BitmapEffectDrawing.cs
- CreateUserWizardDesigner.cs
- Binding.cs
- ResourcesGenerator.cs
- SpeechRecognitionEngine.cs
- BoolLiteral.cs
- XmlSchemaComplexContentExtension.cs
- TypeConverterHelper.cs
- AudioFormatConverter.cs
- StructuralCache.cs
- PathFigureCollectionValueSerializer.cs
- SimpleBitVector32.cs
- DragStartedEventArgs.cs
- HandleDictionary.cs
- Console.cs
- XPathChildIterator.cs