Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- PixelFormat.cs
- SettingsProviderCollection.cs
- GacUtil.cs
- CharAnimationUsingKeyFrames.cs
- PageThemeBuildProvider.cs
- ToolStripItemEventArgs.cs
- DesignerSerializationVisibilityAttribute.cs
- ItemContainerGenerator.cs
- RawTextInputReport.cs
- ProfileServiceManager.cs
- ConfigurationPropertyAttribute.cs
- CustomLineCap.cs
- StringValueConverter.cs
- EventSetter.cs
- DataControlButton.cs
- ExpressionBuilder.cs
- SiteMapSection.cs
- UnauthorizedAccessException.cs
- XpsPartBase.cs
- TextServicesPropertyRanges.cs
- ThreadAbortException.cs
- XPathException.cs
- ZipIORawDataFileBlock.cs
- HandlerWithFactory.cs
- DataTableMappingCollection.cs
- NamespaceEmitter.cs
- CacheRequest.cs
- FakeModelItemImpl.cs
- SqlReorderer.cs
- HttpModuleCollection.cs
- CultureTable.cs
- CookieParameter.cs
- ProcessModelSection.cs
- CqlIdentifiers.cs
- SimpleHandlerFactory.cs
- MetafileHeaderWmf.cs
- HttpStreamFormatter.cs
- Duration.cs
- ObjectDataSourceView.cs
- ColumnClickEvent.cs
- ComplexObject.cs
- StatusBarPanelClickEvent.cs
- _ListenerAsyncResult.cs
- BindingMemberInfo.cs
- DBSqlParserColumn.cs
- ProfileServiceManager.cs
- BoundColumn.cs
- BitmapCodecInfo.cs
- ValidatingPropertiesEventArgs.cs
- TypefaceMap.cs
- PersianCalendar.cs
- ParallelActivityDesigner.cs
- MsmqVerifier.cs
- WebContext.cs
- DataTransferEventArgs.cs
- LogManagementAsyncResult.cs
- WizardStepBase.cs
- ClickablePoint.cs
- XmlHierarchicalDataSourceView.cs
- XamlStyleSerializer.cs
- CopyOnWriteList.cs
- DynamicValueConverter.cs
- EventLogger.cs
- codemethodreferenceexpression.cs
- SerializationInfo.cs
- UserPersonalizationStateInfo.cs
- CodeTypeReferenceCollection.cs
- TemplateInstanceAttribute.cs
- WindowsToolbarItemAsMenuItem.cs
- Clipboard.cs
- XPathAncestorIterator.cs
- DbConnectionPoolOptions.cs
- XmlReaderSettings.cs
- RectangleConverter.cs
- XmlSecureResolver.cs
- DefaultClaimSet.cs
- XmlnsDefinitionAttribute.cs
- DataBoundControlAdapter.cs
- UIElementHelper.cs
- ScriptingWebServicesSectionGroup.cs
- RangeContentEnumerator.cs
- LinkUtilities.cs
- ScriptReferenceBase.cs
- FontStyle.cs
- SettingsPropertyNotFoundException.cs
- CustomAttributeSerializer.cs
- XmlSerializerFactory.cs
- SqlWebEventProvider.cs
- LoginStatusDesigner.cs
- WebPartManagerInternals.cs
- BuildDependencySet.cs
- ItemCheckedEvent.cs
- WebContext.cs
- DragEventArgs.cs
- HotSpotCollection.cs
- BindingContext.cs
- EncoderNLS.cs
- DataGridViewRowPostPaintEventArgs.cs
- CssStyleCollection.cs
- UntypedNullExpression.cs