Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- FunctionOverloadResolver.cs
- Number.cs
- DrawingServices.cs
- Pen.cs
- PointConverter.cs
- StandardTransformFactory.cs
- DocumentPageViewAutomationPeer.cs
- Input.cs
- ContainerVisual.cs
- WindowsFormsHost.cs
- Keywords.cs
- SafeRightsManagementHandle.cs
- DefaultExpressionVisitor.cs
- Preprocessor.cs
- HttpPostedFile.cs
- ToolStripLocationCancelEventArgs.cs
- GlobalizationSection.cs
- TypefaceCollection.cs
- EmissiveMaterial.cs
- PeerInputChannelListener.cs
- HitTestParameters.cs
- SchemaCollectionCompiler.cs
- AutoResizedEvent.cs
- FileSecurity.cs
- FontSourceCollection.cs
- DiagnosticSection.cs
- HandlerBase.cs
- ProxyGenerationError.cs
- EdmComplexTypeAttribute.cs
- Polygon.cs
- DetailsView.cs
- GlobalProxySelection.cs
- RectAnimationUsingKeyFrames.cs
- MarkupExtensionParser.cs
- PopupRootAutomationPeer.cs
- ToolStripGrip.cs
- Literal.cs
- XXXOnTypeBuilderInstantiation.cs
- Calendar.cs
- LongSumAggregationOperator.cs
- HttpContext.cs
- ButtonFieldBase.cs
- _SafeNetHandles.cs
- SharedDp.cs
- ObjectTokenCategory.cs
- StylusPointPropertyUnit.cs
- MimePart.cs
- TraceHwndHost.cs
- TableRow.cs
- listitem.cs
- ChangeProcessor.cs
- RuntimeArgumentHandle.cs
- MetadataPropertyvalue.cs
- ToggleButtonAutomationPeer.cs
- VisualCollection.cs
- AttributeUsageAttribute.cs
- ProbeDuplexCD1AsyncResult.cs
- ExtenderProviderService.cs
- TextContainer.cs
- BaseAsyncResult.cs
- TreeViewItem.cs
- StylusPlugInCollection.cs
- ConnectionManagementElementCollection.cs
- JoinSymbol.cs
- SmiContextFactory.cs
- ExcCanonicalXml.cs
- IMembershipProvider.cs
- XMLSchema.cs
- StylusEditingBehavior.cs
- wgx_render.cs
- MarkupProperty.cs
- NoneExcludedImageIndexConverter.cs
- RequestCachingSection.cs
- KeyValueSerializer.cs
- SystemIcons.cs
- DesignerLabelAdapter.cs
- ArgumentException.cs
- DatagridviewDisplayedBandsData.cs
- XPathNavigatorKeyComparer.cs
- RelationshipWrapper.cs
- OracleBinary.cs
- CodeVariableReferenceExpression.cs
- ReadOnlyObservableCollection.cs
- SymbolMethod.cs
- ClientRuntimeConfig.cs
- DataGridViewTextBoxColumn.cs
- DataServiceHostFactory.cs
- ProcessInputEventArgs.cs
- SafeTimerHandle.cs
- TypeValidationEventArgs.cs
- WindowsSecurityTokenAuthenticator.cs
- MarkupExtensionParser.cs
- DataSourceSelectArguments.cs
- TreeViewDesigner.cs
- SmtpMail.cs
- NativeBuffer.cs
- ListenerConfig.cs
- TimeoutStream.cs
- SelectionRange.cs
- TraceProvider.cs