Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / CopyOfAction.cs / 1305376 / CopyOfAction.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 MS.Internal.Xml.XPath; internal class CopyOfAction : CompiledAction { private const int ResultStored = 2; private const int NodeSetCopied = 3; private int selectKey = Compiler.InvalidQueryKey; internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, selectKey != Compiler.InvalidQueryKey, "select"); CheckEmpty(compiler); } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Ref.Equal(name, compiler.Atoms.Select)) { this.selectKey = compiler.AddQuery(value); } else { return false; } return true; } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); switch (frame.State) { case Initialized: Debug.Assert(frame.NodeSet != null); Query query = processor.GetValueQuery(this.selectKey); object result = query.Evaluate(frame.NodeSet); if (result is XPathNodeIterator) { // we cash this query because otherwise current() works incorrectly. Bug#382166. // To be perfect we should use frame.NewNodeSet here processor.PushActionFrame(CopyNodeSetAction.GetAction(), new XPathArrayIterator(query)); frame.State = NodeSetCopied; break; } XPathNavigator nav = result as XPathNavigator; if (nav != null) { processor.PushActionFrame(CopyNodeSetAction.GetAction(), new XPathSingletonIterator(nav)); frame.State = NodeSetCopied; break; } string value = XmlConvert.ToXPathString(result); if (processor.TextEvent(value)) { frame.Finished(); } else { frame.StoredOutput = value; frame.State = ResultStored; } break; case ResultStored: Debug.Assert(frame.StoredOutput != null); processor.TextEvent(frame.StoredOutput); frame.Finished(); break; case NodeSetCopied: Debug.Assert(frame.State == NodeSetCopied); frame.Finished(); 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; using MS.Internal.Xml.XPath; internal class CopyOfAction : CompiledAction { private const int ResultStored = 2; private const int NodeSetCopied = 3; private int selectKey = Compiler.InvalidQueryKey; internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, selectKey != Compiler.InvalidQueryKey, "select"); CheckEmpty(compiler); } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Ref.Equal(name, compiler.Atoms.Select)) { this.selectKey = compiler.AddQuery(value); } else { return false; } return true; } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); switch (frame.State) { case Initialized: Debug.Assert(frame.NodeSet != null); Query query = processor.GetValueQuery(this.selectKey); object result = query.Evaluate(frame.NodeSet); if (result is XPathNodeIterator) { // we cash this query because otherwise current() works incorrectly. Bug#382166. // To be perfect we should use frame.NewNodeSet here processor.PushActionFrame(CopyNodeSetAction.GetAction(), new XPathArrayIterator(query)); frame.State = NodeSetCopied; break; } XPathNavigator nav = result as XPathNavigator; if (nav != null) { processor.PushActionFrame(CopyNodeSetAction.GetAction(), new XPathSingletonIterator(nav)); frame.State = NodeSetCopied; break; } string value = XmlConvert.ToXPathString(result); if (processor.TextEvent(value)) { frame.Finished(); } else { frame.StoredOutput = value; frame.State = ResultStored; } break; case ResultStored: Debug.Assert(frame.StoredOutput != null); processor.TextEvent(frame.StoredOutput); frame.Finished(); break; case NodeSetCopied: Debug.Assert(frame.State == NodeSetCopied); frame.Finished(); 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
- DocumentGrid.cs
- TrackingServices.cs
- ObjectDataSourceStatusEventArgs.cs
- ImageBrush.cs
- BuildProvider.cs
- TraceContextEventArgs.cs
- CheckBoxRenderer.cs
- GifBitmapEncoder.cs
- CompositeFontFamily.cs
- StateDesigner.TransitionInfo.cs
- AssociationSet.cs
- DoubleAnimation.cs
- SoapReflector.cs
- ExtenderProvidedPropertyAttribute.cs
- WinEventQueueItem.cs
- XmlComment.cs
- InnerItemCollectionView.cs
- Int16.cs
- EventBuilder.cs
- UInt64Converter.cs
- RouteParameter.cs
- fixedPageContentExtractor.cs
- SemanticResultValue.cs
- CssStyleCollection.cs
- ObjectItemConventionAssemblyLoader.cs
- ConfigXmlSignificantWhitespace.cs
- BehaviorEditorPart.cs
- MD5CryptoServiceProvider.cs
- SessionStateContainer.cs
- SqlParameterCollection.cs
- SettingsPropertyWrongTypeException.cs
- KeyPressEvent.cs
- DecoderFallback.cs
- MenuItemBindingCollection.cs
- WebSysDefaultValueAttribute.cs
- TableLayout.cs
- DataAdapter.cs
- Message.cs
- ScrollBar.cs
- DataGridViewTopRowAccessibleObject.cs
- LinkButton.cs
- FlowchartDesigner.Helpers.cs
- DetailsViewPagerRow.cs
- XmlLinkedNode.cs
- ImageList.cs
- ObjectHelper.cs
- ContextQuery.cs
- SerializationObjectManager.cs
- MemberJoinTreeNode.cs
- HandlerWithFactory.cs
- SQlBooleanStorage.cs
- Timer.cs
- WebServiceAttribute.cs
- NetDispatcherFaultException.cs
- XmlBoundElement.cs
- WebPartZoneBase.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- DesignParameter.cs
- Converter.cs
- PathGeometry.cs
- BlockCollection.cs
- Fonts.cs
- StringReader.cs
- LambdaCompiler.Binary.cs
- EventLogReader.cs
- Control.cs
- SqlCharStream.cs
- SortDescription.cs
- Int64Converter.cs
- ConsoleTraceListener.cs
- RuntimeConfig.cs
- RequestCachePolicy.cs
- XXXInfos.cs
- KeyValueConfigurationCollection.cs
- Literal.cs
- FileCodeGroup.cs
- IdleTimeoutMonitor.cs
- ContextQuery.cs
- IndexedString.cs
- sitestring.cs
- DiffuseMaterial.cs
- HMACSHA1.cs
- wgx_sdk_version.cs
- StringAttributeCollection.cs
- Exception.cs
- Size.cs
- RecipientIdentity.cs
- GridViewHeaderRowPresenter.cs
- PropertyItemInternal.cs
- WebScriptEnablingBehavior.cs
- SoapFaultCodes.cs
- MatrixTransform3D.cs
- PasswordDeriveBytes.cs
- DataGridTemplateColumn.cs
- MetadataFile.cs
- IntranetCredentialPolicy.cs
- HashCodeCombiner.cs
- HandleCollector.cs
- PngBitmapEncoder.cs
- SiteMapHierarchicalDataSourceView.cs