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
- WorkflowRuntimeSection.cs
- TextBoxAutoCompleteSourceConverter.cs
- AuthenticateEventArgs.cs
- FontStyle.cs
- ParallelTimeline.cs
- COM2ExtendedTypeConverter.cs
- AsyncResult.cs
- KeyEventArgs.cs
- LinqDataSourceValidationException.cs
- ProfileBuildProvider.cs
- InkPresenter.cs
- ObjectDataSourceFilteringEventArgs.cs
- GridViewColumn.cs
- PlatformCulture.cs
- StrokeNodeOperations.cs
- TextViewSelectionProcessor.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- InvalidWMPVersionException.cs
- handlecollector.cs
- CommaDelimitedStringAttributeCollectionConverter.cs
- ColumnMapTranslator.cs
- OdbcUtils.cs
- COM2ExtendedUITypeEditor.cs
- UpdateDelegates.Generated.cs
- XmlNullResolver.cs
- ConfigurationConverterBase.cs
- DataBindEngine.cs
- AccessKeyManager.cs
- ImageSource.cs
- FormatException.cs
- ResourceReferenceKeyNotFoundException.cs
- DrawingImage.cs
- NotifyParentPropertyAttribute.cs
- StubHelpers.cs
- GeometryHitTestParameters.cs
- MembershipValidatePasswordEventArgs.cs
- TypeReference.cs
- TableLayoutPanel.cs
- DataTablePropertyDescriptor.cs
- ConnectivityStatus.cs
- RowParagraph.cs
- ProjectionPruner.cs
- LayoutEngine.cs
- Image.cs
- DependencyObject.cs
- FixedSOMTextRun.cs
- EmulateRecognizeCompletedEventArgs.cs
- ListenerAdaptersInstallComponent.cs
- XmlSchemaSimpleContent.cs
- Enlistment.cs
- AssemblyHash.cs
- ExecutionEngineException.cs
- CachedFontFace.cs
- SqlClientPermission.cs
- CachedBitmap.cs
- ListItemsCollectionEditor.cs
- TypeHelper.cs
- SeparatorAutomationPeer.cs
- ShaderEffect.cs
- ZipIOExtraFieldZip64Element.cs
- NavigationPropertyEmitter.cs
- EntitySqlQueryBuilder.cs
- HyperLinkStyle.cs
- RijndaelManagedTransform.cs
- IntSecurity.cs
- TdsParameterSetter.cs
- ClosureBinding.cs
- TreeViewItem.cs
- BackEase.cs
- GenericTypeParameterConverter.cs
- StateItem.cs
- SourceLineInfo.cs
- PolicyException.cs
- BCLDebug.cs
- WebPartConnectVerb.cs
- Wildcard.cs
- ErrorHandler.cs
- FontFamilyConverter.cs
- ValidationHelper.cs
- XPathQilFactory.cs
- WebPartEventArgs.cs
- ObjectStateManager.cs
- BitmapInitialize.cs
- ControlCodeDomSerializer.cs
- XmlEncodedRawTextWriter.cs
- CmsUtils.cs
- XmlArrayItemAttribute.cs
- QuotedStringWriteStateInfo.cs
- CodeNamespaceCollection.cs
- ActivationServices.cs
- CombinedGeometry.cs
- IssuanceTokenProviderState.cs
- AddInProcess.cs
- CompositionAdorner.cs
- XmlChildEnumerator.cs
- DataBoundControlHelper.cs
- ConvertersCollection.cs
- CircleHotSpot.cs
- SmtpReplyReaderFactory.cs
- RadioButtonList.cs