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 / newinstructionaction.cs / 1 / newinstructionaction.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; internal class NewInstructionAction : ContainerAction { string name; string parent; bool fallback; internal override void Compile(Compiler compiler) { XPathNavigator nav = compiler.Input.Navigator.Clone(); name = nav.Name; nav.MoveToParent(); parent = nav.Name; if (compiler.Recurse()) { CompileSelectiveTemplate(compiler); compiler.ToParent(); } } internal void CompileSelectiveTemplate(Compiler compiler){ NavigatorInput input = compiler.Input; do{ if (Keywords.Equals(input.NamespaceURI, input.Atoms.XsltNamespace) && Keywords.Equals(input.LocalName, input.Atoms.Fallback)){ fallback = true; if (compiler.Recurse()){ CompileTemplate(compiler); compiler.ToParent(); } } } while (compiler.Advance()); } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); switch (frame.State) { case Initialized: if (!fallback) { throw XsltException.Create(Res.Xslt_UnknownExtensionElement, this.name); } if (this.containedActions != null && this.containedActions.Count > 0) { processor.PushActionFrame(frame); frame.State = ProcessingChildren; break; } else goto case ProcessingChildren; case ProcessingChildren: frame.Finished(); break; default: Debug.Fail("Invalid Container action execution state"); break; } } } } // 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; internal class NewInstructionAction : ContainerAction { string name; string parent; bool fallback; internal override void Compile(Compiler compiler) { XPathNavigator nav = compiler.Input.Navigator.Clone(); name = nav.Name; nav.MoveToParent(); parent = nav.Name; if (compiler.Recurse()) { CompileSelectiveTemplate(compiler); compiler.ToParent(); } } internal void CompileSelectiveTemplate(Compiler compiler){ NavigatorInput input = compiler.Input; do{ if (Keywords.Equals(input.NamespaceURI, input.Atoms.XsltNamespace) && Keywords.Equals(input.LocalName, input.Atoms.Fallback)){ fallback = true; if (compiler.Recurse()){ CompileTemplate(compiler); compiler.ToParent(); } } } while (compiler.Advance()); } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); switch (frame.State) { case Initialized: if (!fallback) { throw XsltException.Create(Res.Xslt_UnknownExtensionElement, this.name); } if (this.containedActions != null && this.containedActions.Count > 0) { processor.PushActionFrame(frame); frame.State = ProcessingChildren; break; } else goto case ProcessingChildren; case ProcessingChildren: frame.Finished(); break; default: Debug.Fail("Invalid Container action execution state"); break; } } } } // 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
- SecurityManager.cs
- typedescriptorpermissionattribute.cs
- PageCodeDomTreeGenerator.cs
- RenamedEventArgs.cs
- Screen.cs
- DateTimeStorage.cs
- XmlWrappingWriter.cs
- OrderPreservingPipeliningSpoolingTask.cs
- ServiceRouteHandler.cs
- X509ClientCertificateCredentialsElement.cs
- ProcessThreadCollection.cs
- DecimalAnimationUsingKeyFrames.cs
- RectangleGeometry.cs
- VirtualPathUtility.cs
- HttpValueCollection.cs
- MultipartIdentifier.cs
- DoubleLinkListEnumerator.cs
- FileClassifier.cs
- DataControlButton.cs
- PageHandlerFactory.cs
- ApplicationFileParser.cs
- SqlBooleanizer.cs
- BindingGroup.cs
- formatter.cs
- TimeSpan.cs
- OrthographicCamera.cs
- SQLInt32.cs
- RijndaelManaged.cs
- ErrorStyle.cs
- RangeContentEnumerator.cs
- WindowsListBox.cs
- SafeEventLogWriteHandle.cs
- TypeElementCollection.cs
- ProcessHost.cs
- BindToObject.cs
- AssemblyCollection.cs
- InputLanguageProfileNotifySink.cs
- shaperfactoryquerycacheentry.cs
- ViewBase.cs
- TreeNodeStyle.cs
- SpecialFolderEnumConverter.cs
- CheckoutException.cs
- SafeBitVector32.cs
- LabelLiteral.cs
- NavigationCommands.cs
- BindingContext.cs
- Parallel.cs
- SiteMapNodeCollection.cs
- DecimalSumAggregationOperator.cs
- EventSource.cs
- Variable.cs
- MethodBuilderInstantiation.cs
- CodeExporter.cs
- Inline.cs
- EventLogger.cs
- XmlSchemaDatatype.cs
- XmlResolver.cs
- ColorTransform.cs
- MergeLocalizationDirectives.cs
- ScrollEvent.cs
- WindowsStatic.cs
- CollectionViewGroupRoot.cs
- CachedPathData.cs
- JournalEntryListConverter.cs
- DetailsViewUpdateEventArgs.cs
- XmlAttributeHolder.cs
- FormatVersion.cs
- CacheDependency.cs
- RecipientInfo.cs
- LinqTreeNodeEvaluator.cs
- ELinqQueryState.cs
- BufferModeSettings.cs
- FontUnitConverter.cs
- TreeNodeBindingCollection.cs
- TraceLevelStore.cs
- DataGridItemCollection.cs
- DataGridViewCellConverter.cs
- TreeBuilderBamlTranslator.cs
- Label.cs
- X509UI.cs
- BevelBitmapEffect.cs
- ConfigXmlDocument.cs
- DrawListViewSubItemEventArgs.cs
- WebServiceMethodData.cs
- WebConfigurationHost.cs
- ScriptRef.cs
- ParallelTimeline.cs
- OleDbParameter.cs
- Accessors.cs
- MenuItemStyleCollection.cs
- CalendarButton.cs
- XhtmlConformanceSection.cs
- AtomServiceDocumentSerializer.cs
- DebuggerAttributes.cs
- InvalidComObjectException.cs
- XsltException.cs
- LinqDataSourceEditData.cs
- SevenBitStream.cs
- FamilyTypefaceCollection.cs
- SplitterCancelEvent.cs