Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / ValueOfAction.cs / 1 / ValueOfAction.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 ValueOfAction : CompiledAction { private const int ResultStored = 2; private int selectKey = Compiler.InvalidQueryKey; private bool disableOutputEscaping; private static Action s_BuiltInRule = new BuiltInRuleTextAction(); internal static Action BuiltInRule() { Debug.Assert(s_BuiltInRule != null); return s_BuiltInRule; } internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, selectKey != Compiler.InvalidQueryKey, Keywords.s_Select); CheckEmpty(compiler); } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Keywords.Equals(name, compiler.Atoms.Select)) { this.selectKey = compiler.AddQuery(value); } else if (Keywords.Equals(name, compiler.Atoms.DisableOutputEscaping)) { this.disableOutputEscaping = compiler.GetYesNo(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 != null); Debug.Assert(frame.NodeSet != null); string value = processor.ValueOf(frame, this.selectKey); if (processor.TextEvent(value, disableOutputEscaping)) { frame.Finished(); } else { frame.StoredOutput = value; frame.State = ResultStored; } break; case ResultStored: Debug.Assert(frame.StoredOutput != null); processor.TextEvent(frame.StoredOutput); frame.Finished(); break; default: Debug.Fail("Invalid ValueOfAction execution state"); break; } } } internal class BuiltInRuleTextAction : Action { private const int ResultStored = 2; internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); switch (frame.State) { case Initialized: Debug.Assert(frame != null); Debug.Assert(frame.NodeSet != null); string value = processor.ValueOf(frame.NodeSet.Current); if (processor.TextEvent(value, /*disableOutputEscaping:*/false)) { frame.Finished(); } else { frame.StoredOutput = value; frame.State = ResultStored; } break; case ResultStored: Debug.Assert(frame.StoredOutput != null); processor.TextEvent(frame.StoredOutput); frame.Finished(); break; default: Debug.Fail("Invalid BuiltInRuleTextAction 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 ValueOfAction : CompiledAction { private const int ResultStored = 2; private int selectKey = Compiler.InvalidQueryKey; private bool disableOutputEscaping; private static Action s_BuiltInRule = new BuiltInRuleTextAction(); internal static Action BuiltInRule() { Debug.Assert(s_BuiltInRule != null); return s_BuiltInRule; } internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, selectKey != Compiler.InvalidQueryKey, Keywords.s_Select); CheckEmpty(compiler); } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Keywords.Equals(name, compiler.Atoms.Select)) { this.selectKey = compiler.AddQuery(value); } else if (Keywords.Equals(name, compiler.Atoms.DisableOutputEscaping)) { this.disableOutputEscaping = compiler.GetYesNo(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 != null); Debug.Assert(frame.NodeSet != null); string value = processor.ValueOf(frame, this.selectKey); if (processor.TextEvent(value, disableOutputEscaping)) { frame.Finished(); } else { frame.StoredOutput = value; frame.State = ResultStored; } break; case ResultStored: Debug.Assert(frame.StoredOutput != null); processor.TextEvent(frame.StoredOutput); frame.Finished(); break; default: Debug.Fail("Invalid ValueOfAction execution state"); break; } } } internal class BuiltInRuleTextAction : Action { private const int ResultStored = 2; internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); switch (frame.State) { case Initialized: Debug.Assert(frame != null); Debug.Assert(frame.NodeSet != null); string value = processor.ValueOf(frame.NodeSet.Current); if (processor.TextEvent(value, /*disableOutputEscaping:*/false)) { frame.Finished(); } else { frame.StoredOutput = value; frame.State = ResultStored; } break; case ResultStored: Debug.Assert(frame.StoredOutput != null); processor.TextEvent(frame.StoredOutput); frame.Finished(); break; default: Debug.Fail("Invalid BuiltInRuleTextAction 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
- Sequence.cs
- EntityDataSourceQueryBuilder.cs
- Transform3D.cs
- RoleService.cs
- Int32AnimationBase.cs
- StaticSiteMapProvider.cs
- TaiwanLunisolarCalendar.cs
- WebPartRestoreVerb.cs
- AmbientValueAttribute.cs
- TextParagraph.cs
- UserControlBuildProvider.cs
- ErrorWrapper.cs
- PermissionAttributes.cs
- DataGridViewLinkColumn.cs
- HttpModuleActionCollection.cs
- XmlnsDefinitionAttribute.cs
- EventlogProvider.cs
- BitmapEffectInputConnector.cs
- XmlIlGenerator.cs
- LicenseProviderAttribute.cs
- ErrorTableItemStyle.cs
- TagPrefixCollection.cs
- TraceFilter.cs
- DbConnectionStringBuilder.cs
- BaseInfoTable.cs
- ChildTable.cs
- SystemGatewayIPAddressInformation.cs
- TemplatePropertyEntry.cs
- ToolStripContainerActionList.cs
- Command.cs
- SkipStoryboardToFill.cs
- DesignerLoader.cs
- RtfToXamlLexer.cs
- ControlCollection.cs
- PackageDigitalSignature.cs
- HttpListenerRequestTraceRecord.cs
- RequestResizeEvent.cs
- VerificationAttribute.cs
- CssClassPropertyAttribute.cs
- QilValidationVisitor.cs
- TableParagraph.cs
- BuiltInPermissionSets.cs
- TypeInitializationException.cs
- DBSqlParserTableCollection.cs
- Tuple.cs
- SelectingProviderEventArgs.cs
- ProfileModule.cs
- PolicyManager.cs
- _RegBlobWebProxyDataBuilder.cs
- Single.cs
- TemplateControlParser.cs
- AttachedPropertyInfo.cs
- Cursors.cs
- EdmConstants.cs
- RuntimeCompatibilityAttribute.cs
- URLAttribute.cs
- IconConverter.cs
- SecurityContext.cs
- TerminatorSinks.cs
- PlanCompilerUtil.cs
- PerformanceCounterPermissionAttribute.cs
- Hex.cs
- WorkflowOperationBehavior.cs
- CodeDirectionExpression.cs
- MetricEntry.cs
- WpfXamlMember.cs
- SubqueryRules.cs
- URLIdentityPermission.cs
- PathFigureCollection.cs
- XmlDataSource.cs
- RoutingExtension.cs
- DesignSurfaceEvent.cs
- XmlQualifiedNameTest.cs
- GridViewEditEventArgs.cs
- Completion.cs
- Comparer.cs
- IPipelineRuntime.cs
- ContractSearchPattern.cs
- DescendentsWalkerBase.cs
- RuntimeResourceSet.cs
- CustomAttributeBuilder.cs
- MessagePropertyDescriptionCollection.cs
- ExternalCalls.cs
- GridToolTip.cs
- VisualStyleInformation.cs
- PartBasedPackageProperties.cs
- ToolStripContentPanelDesigner.cs
- AdRotatorDesigner.cs
- GeneralTransform3DCollection.cs
- Crc32.cs
- XmlHierarchyData.cs
- InstanceLockLostException.cs
- SqlConnectionPoolGroupProviderInfo.cs
- Executor.cs
- HiddenFieldPageStatePersister.cs
- DesignerActionVerbItem.cs
- BooleanExpr.cs
- TextSimpleMarkerProperties.cs
- Module.cs
- TypeSystem.cs