Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / ValueOfAction.cs / 1305376 / 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, "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 if (Ref.Equal(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, "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 if (Ref.Equal(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
- COSERVERINFO.cs
- HelpProvider.cs
- ObjectNotFoundException.cs
- _KerberosClient.cs
- ControlCachePolicy.cs
- QilCloneVisitor.cs
- Single.cs
- TextChange.cs
- RNGCryptoServiceProvider.cs
- EntityTransaction.cs
- ModulesEntry.cs
- SqlDataSourceStatusEventArgs.cs
- DBCommandBuilder.cs
- _StreamFramer.cs
- WpfPayload.cs
- TextEditorThreadLocalStore.cs
- System.Data_BID.cs
- JapaneseLunisolarCalendar.cs
- WizardStepBase.cs
- CodeExporter.cs
- IteratorFilter.cs
- References.cs
- COSERVERINFO.cs
- _UncName.cs
- JavaScriptSerializer.cs
- _SpnDictionary.cs
- ArrayWithOffset.cs
- BamlLocalizableResourceKey.cs
- SqlStatistics.cs
- ContentWrapperAttribute.cs
- RowToParametersTransformer.cs
- GetTokenRequest.cs
- Span.cs
- StdValidatorsAndConverters.cs
- SizeChangedEventArgs.cs
- CodeSnippetCompileUnit.cs
- odbcmetadatacollectionnames.cs
- WorkflowInstanceContextProvider.cs
- HttpRequestCacheValidator.cs
- LockRecoveryTask.cs
- JsonReaderDelegator.cs
- ColorIndependentAnimationStorage.cs
- Rect.cs
- SecurityUtils.cs
- MruCache.cs
- KnownTypes.cs
- Byte.cs
- ActivityDesignerHelper.cs
- XmlTextEncoder.cs
- HwndKeyboardInputProvider.cs
- NamespaceCollection.cs
- _DomainName.cs
- TextContainerChangeEventArgs.cs
- LinkedList.cs
- LogStream.cs
- MetafileEditor.cs
- Latin1Encoding.cs
- SafeFileHandle.cs
- ColorIndependentAnimationStorage.cs
- DocumentPageViewAutomationPeer.cs
- FilterEventArgs.cs
- ConnectionsZone.cs
- IPHostEntry.cs
- TypeConvertions.cs
- _ShellExpression.cs
- NumericExpr.cs
- BlurBitmapEffect.cs
- CompositeFontInfo.cs
- FreezableDefaultValueFactory.cs
- Helper.cs
- AlternateViewCollection.cs
- NavigationEventArgs.cs
- HttpRequest.cs
- CommandTreeTypeHelper.cs
- LogStore.cs
- DateTimeFormatInfo.cs
- Bitmap.cs
- KerberosReceiverSecurityToken.cs
- TextBox.cs
- NumericUpDown.cs
- Point3DCollection.cs
- Stacktrace.cs
- XmlAttributeProperties.cs
- VariableQuery.cs
- UnmanagedBitmapWrapper.cs
- TableRowCollection.cs
- WizardStepBase.cs
- UnitySerializationHolder.cs
- Point3DValueSerializer.cs
- CatalogPartDesigner.cs
- WrappedReader.cs
- KnownBoxes.cs
- ClonableStack.cs
- XmlSchemaAnnotated.cs
- LineSegment.cs
- CompressionTransform.cs
- DataColumnPropertyDescriptor.cs
- ContextStaticAttribute.cs
- HandoffBehavior.cs
- SQLDecimal.cs