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
- Parsers.cs
- ExternalException.cs
- OleDragDropHandler.cs
- TypeUnloadedException.cs
- DesignerUtility.cs
- ListView.cs
- SqlGatherConsumedAliases.cs
- BevelBitmapEffect.cs
- Module.cs
- CTreeGenerator.cs
- HMACSHA256.cs
- DrawingImage.cs
- XamlFilter.cs
- StandardTransformFactory.cs
- TextBoxBase.cs
- SchemaManager.cs
- WebPartTransformerAttribute.cs
- Sequence.cs
- NativeCppClassAttribute.cs
- HttpRuntimeSection.cs
- PersonalizationProviderCollection.cs
- RawMouseInputReport.cs
- TreeNodeBindingCollection.cs
- ReliabilityContractAttribute.cs
- DataSetUtil.cs
- InstanceLockTracking.cs
- InitializationEventAttribute.cs
- DiagnosticStrings.cs
- CodeAttributeDeclarationCollection.cs
- PermissionSetTriple.cs
- MaterialGroup.cs
- ColorMap.cs
- BinHexEncoder.cs
- unitconverter.cs
- EventPrivateKey.cs
- ArraySubsetEnumerator.cs
- DisplayNameAttribute.cs
- MILUtilities.cs
- NativeMethodsOther.cs
- MasterPage.cs
- SubMenuStyle.cs
- CFStream.cs
- DbgUtil.cs
- StorageMappingItemCollection.cs
- RemoteWebConfigurationHostServer.cs
- InputLanguageManager.cs
- QueryStringHandler.cs
- ZipFileInfo.cs
- WebPartConnectionsDisconnectVerb.cs
- ToolStripControlHost.cs
- TableStyle.cs
- ViewStateException.cs
- ToolStripContainerDesigner.cs
- FillBehavior.cs
- TextElementCollection.cs
- ManagementBaseObject.cs
- XmlNamespaceMapping.cs
- SessionKeyExpiredException.cs
- ProcessModule.cs
- ResponseStream.cs
- DataGridViewCellStateChangedEventArgs.cs
- URLAttribute.cs
- ClientType.cs
- InvalidWorkflowException.cs
- DataGridCellItemAutomationPeer.cs
- RouteValueExpressionBuilder.cs
- ProxyGenerationError.cs
- IssuedTokensHeader.cs
- RoutedCommand.cs
- ImageListImage.cs
- RichTextBoxConstants.cs
- TextTrailingCharacterEllipsis.cs
- XamlVector3DCollectionSerializer.cs
- SizeConverter.cs
- EncoderBestFitFallback.cs
- _ConnectStream.cs
- PlatformCulture.cs
- StopRoutingHandler.cs
- DecimalAnimationUsingKeyFrames.cs
- PageThemeBuildProvider.cs
- CodeMemberField.cs
- ComboBox.cs
- WorkflowInstanceProvider.cs
- DataGridViewCellConverter.cs
- EpmContentDeSerializerBase.cs
- AssemblyName.cs
- WindowsRichEditRange.cs
- ManagedWndProcTracker.cs
- ReadOnlyPropertyMetadata.cs
- OrderedDictionary.cs
- SpotLight.cs
- AdornerHitTestResult.cs
- Normalization.cs
- ContainerVisual.cs
- SqlXmlStorage.cs
- __ConsoleStream.cs
- ObjectIDGenerator.cs
- ResolveCriteriaApril2005.cs
- WCFBuildProvider.cs
- WebPermission.cs