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 / 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
- TraceSection.cs
- ZipIOExtraFieldPaddingElement.cs
- RightsManagementEncryptionTransform.cs
- UIElementPropertyUndoUnit.cs
- TcpClientCredentialType.cs
- DbException.cs
- TypeBuilderInstantiation.cs
- httpserverutility.cs
- CatalogPartCollection.cs
- Timeline.cs
- SecurityDocument.cs
- RegexStringValidator.cs
- ControlAdapter.cs
- ColorIndependentAnimationStorage.cs
- RC2CryptoServiceProvider.cs
- HostingEnvironmentSection.cs
- DiscoveryEndpointElement.cs
- ChannelServices.cs
- MetadataSet.cs
- XmlSchemaRedefine.cs
- UnsafeNativeMethodsPenimc.cs
- RMEnrollmentPage3.cs
- TrackingServices.cs
- DataGridViewColumnStateChangedEventArgs.cs
- ToolStripPanelRow.cs
- BindingListCollectionView.cs
- SqlDataSource.cs
- ObjectHandle.cs
- MetadataArtifactLoaderCompositeFile.cs
- TextWriter.cs
- HtmlInputButton.cs
- EmptyControlCollection.cs
- SynchronizedKeyedCollection.cs
- DataSource.cs
- InvalidCastException.cs
- MexHttpBindingElement.cs
- PropertyRef.cs
- ImageUrlEditor.cs
- MessageHeaderT.cs
- XmlSchemaIdentityConstraint.cs
- AppDomainManager.cs
- EntitySqlQueryCacheEntry.cs
- AttributeXamlType.cs
- Stack.cs
- SchemaCompiler.cs
- HttpTransportManager.cs
- DoubleAnimationUsingKeyFrames.cs
- TextFormatterImp.cs
- CustomErrorsSection.cs
- FloatUtil.cs
- SqlStream.cs
- HttpTransportSecurity.cs
- WorkflowViewElement.cs
- SafeNativeMethods.cs
- ProxyWebPartManager.cs
- TTSVoice.cs
- TypeGeneratedEventArgs.cs
- PriorityBindingExpression.cs
- AssemblyBuilder.cs
- JournalNavigationScope.cs
- SqlBulkCopyColumnMappingCollection.cs
- RepeatButton.cs
- WeakRefEnumerator.cs
- TabControlAutomationPeer.cs
- CodeDirectoryCompiler.cs
- MouseOverProperty.cs
- TextContainer.cs
- BrowserCapabilitiesFactory.cs
- IriParsingElement.cs
- documentsequencetextcontainer.cs
- StateMachineSubscription.cs
- TextEditorLists.cs
- DataGridRowHeaderAutomationPeer.cs
- CuspData.cs
- HostedTransportConfigurationManager.cs
- SqlTypesSchemaImporter.cs
- Deserializer.cs
- ApplicationActivator.cs
- StatusBarItemAutomationPeer.cs
- HttpWebResponse.cs
- WpfXamlType.cs
- StrongNameUtility.cs
- AssemblyCollection.cs
- TreeNodeClickEventArgs.cs
- SchemaEntity.cs
- PerformanceCounterCategory.cs
- uribuilder.cs
- PropertyDescriptorCollection.cs
- SystemDropShadowChrome.cs
- XmlAnyAttributeAttribute.cs
- Annotation.cs
- TdsParserStateObject.cs
- tibetanshape.cs
- FlowDocumentPage.cs
- IListConverters.cs
- DocumentViewer.cs
- basemetadatamappingvisitor.cs
- Options.cs
- ApplicationDirectory.cs
- ListViewPagedDataSource.cs