Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- RawStylusInputReport.cs
- Pair.cs
- EncoderParameter.cs
- ArrayTypeMismatchException.cs
- processwaithandle.cs
- CompModSwitches.cs
- MouseCaptureWithinProperty.cs
- RelationshipNavigation.cs
- AsymmetricSignatureFormatter.cs
- StateDesignerConnector.cs
- HtmlTitle.cs
- PropertyIDSet.cs
- CaseInsensitiveOrdinalStringComparer.cs
- ReadOnlyMetadataCollection.cs
- BitStream.cs
- DataGridViewAccessibleObject.cs
- SqlNodeTypeOperators.cs
- Encoder.cs
- StatusBarItemAutomationPeer.cs
- OutputCacheSettings.cs
- DataRecordInfo.cs
- ClientConvert.cs
- XmlFormatExtensionAttribute.cs
- SqlDeflator.cs
- BaseComponentEditor.cs
- ParameterElementCollection.cs
- ProcessModelInfo.cs
- SystemDiagnosticsSection.cs
- DataTable.cs
- ProfilePropertyNameValidator.cs
- ScriptingScriptResourceHandlerSection.cs
- SubclassTypeValidatorAttribute.cs
- DefaultBindingPropertyAttribute.cs
- TypefaceCollection.cs
- TrackingConditionCollection.cs
- DataGridViewCellParsingEventArgs.cs
- StreamGeometry.cs
- InputLanguageSource.cs
- CheckBoxList.cs
- SocketException.cs
- Shape.cs
- COM2PropertyDescriptor.cs
- PerspectiveCamera.cs
- CodeExpressionRuleDeclaration.cs
- SequenceRange.cs
- CodeThrowExceptionStatement.cs
- Ipv6Element.cs
- reliableinputsessionchannel.cs
- UrlMappingsSection.cs
- RegexBoyerMoore.cs
- ProfileGroupSettingsCollection.cs
- RegexWriter.cs
- DataSourceSerializationException.cs
- SoapAttributeAttribute.cs
- WebBrowserBase.cs
- behaviorssection.cs
- StatusStrip.cs
- ipaddressinformationcollection.cs
- NonBatchDirectoryCompiler.cs
- VersionedStreamOwner.cs
- VersionedStream.cs
- SimpleColumnProvider.cs
- XamlPathDataSerializer.cs
- ClientTargetCollection.cs
- SqlDataSourceStatusEventArgs.cs
- SwitchLevelAttribute.cs
- XmlSchemaImporter.cs
- TimeManager.cs
- TransformerConfigurationWizardBase.cs
- TdsValueSetter.cs
- SaveFileDialog.cs
- DirectoryNotFoundException.cs
- GeneralTransform3DGroup.cs
- SqlEnums.cs
- BigInt.cs
- DoubleLinkList.cs
- ConfigurationPermission.cs
- CodeMethodInvokeExpression.cs
- DotExpr.cs
- BamlCollectionHolder.cs
- NullableLongAverageAggregationOperator.cs
- FlowLayout.cs
- ProtocolElement.cs
- TextCompositionManager.cs
- GlobalProxySelection.cs
- RectConverter.cs
- SpecularMaterial.cs
- PerfProviderCollection.cs
- Util.cs
- DialogWindow.cs
- MenuEventArgs.cs
- BindingListCollectionView.cs
- CorePropertiesFilter.cs
- CachedPathData.cs
- DataProtection.cs
- UnmanagedMarshal.cs
- ToolZone.cs
- SignatureDescription.cs
- RowUpdatedEventArgs.cs
- MethodRental.cs