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 / MessageAction.cs / 1 / MessageAction.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.IO; using System.Globalization; using System.Diagnostics; using System.Xml; using System.Xml.XPath; internal class MessageAction : ContainerAction { bool _Terminate; internal override void Compile(Compiler compiler) { CompileAttributes(compiler); if (compiler.Recurse()) { CompileTemplate(compiler); compiler.ToParent(); } } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Keywords.Equals(name, compiler.Atoms.Terminate)) { _Terminate = 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: TextOnlyOutput output = new TextOnlyOutput(processor, new StringWriter(CultureInfo.InvariantCulture)); processor.PushOutput(output); processor.PushActionFrame(frame); frame.State = ProcessingChildren; break; case ProcessingChildren: TextOnlyOutput recOutput = processor.PopOutput() as TextOnlyOutput; Debug.Assert(recOutput != null); Console.WriteLine(recOutput.Writer.ToString()); if (_Terminate) { throw XsltException.Create(Res.Xslt_Terminate, recOutput.Writer.ToString()); } frame.Finished(); break; default: Debug.Fail("Invalid MessageAction 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.IO; using System.Globalization; using System.Diagnostics; using System.Xml; using System.Xml.XPath; internal class MessageAction : ContainerAction { bool _Terminate; internal override void Compile(Compiler compiler) { CompileAttributes(compiler); if (compiler.Recurse()) { CompileTemplate(compiler); compiler.ToParent(); } } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Keywords.Equals(name, compiler.Atoms.Terminate)) { _Terminate = 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: TextOnlyOutput output = new TextOnlyOutput(processor, new StringWriter(CultureInfo.InvariantCulture)); processor.PushOutput(output); processor.PushActionFrame(frame); frame.State = ProcessingChildren; break; case ProcessingChildren: TextOnlyOutput recOutput = processor.PopOutput() as TextOnlyOutput; Debug.Assert(recOutput != null); Console.WriteLine(recOutput.Writer.ToString()); if (_Terminate) { throw XsltException.Create(Res.Xslt_Terminate, recOutput.Writer.ToString()); } frame.Finished(); break; default: Debug.Fail("Invalid MessageAction 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
- PngBitmapEncoder.cs
- SnapLine.cs
- TableCell.cs
- XmlDataDocument.cs
- TypeLibConverter.cs
- FixedNode.cs
- ColumnMapProcessor.cs
- WindowsListView.cs
- Workspace.cs
- WebPartCollection.cs
- MulticastOption.cs
- NotifyInputEventArgs.cs
- CallContext.cs
- NotifyParentPropertyAttribute.cs
- BaseTreeIterator.cs
- XmlToDatasetMap.cs
- Inflater.cs
- SignedPkcs7.cs
- PageRanges.cs
- WriteFileContext.cs
- XmlDataImplementation.cs
- WebConfigurationHostFileChange.cs
- BuildManager.cs
- ObjectSecurityT.cs
- DBCSCodePageEncoding.cs
- DataSourceHelper.cs
- QilName.cs
- ViewgenContext.cs
- WindowsRichEdit.cs
- PopOutPanel.cs
- CodeNamespaceCollection.cs
- CqlParser.cs
- CompositeFontParser.cs
- MD5.cs
- GridViewUpdatedEventArgs.cs
- BrowserDefinition.cs
- XmlSchemaSet.cs
- XmlTextEncoder.cs
- ObservableCollection.cs
- ObjectPropertyMapping.cs
- ToolBarButton.cs
- DataGridViewTopLeftHeaderCell.cs
- IteratorDescriptor.cs
- StatusBarItemAutomationPeer.cs
- ElementProxy.cs
- TabItem.cs
- RawKeyboardInputReport.cs
- HttpCacheVary.cs
- ObjectDataSourceSelectingEventArgs.cs
- Bold.cs
- EdmProperty.cs
- SQLDouble.cs
- LayoutTableCell.cs
- Convert.cs
- CaseInsensitiveComparer.cs
- SourceChangedEventArgs.cs
- SchemaImporterExtensionsSection.cs
- TextHintingModeValidation.cs
- WindowsNonControl.cs
- RootDesignerSerializerAttribute.cs
- EdmProviderManifest.cs
- AsymmetricCryptoHandle.cs
- WorkItem.cs
- AddingNewEventArgs.cs
- XmlSchemaValidationException.cs
- LayoutDump.cs
- DataPagerFieldItem.cs
- UnauthorizedWebPart.cs
- XpsResource.cs
- ObjectItemCollection.cs
- XmlSchemaComplexContentRestriction.cs
- TextServicesHost.cs
- MediaTimeline.cs
- MetadataArtifactLoader.cs
- DbgUtil.cs
- DefaultProxySection.cs
- ToolStripItemImageRenderEventArgs.cs
- SynchronizationLockException.cs
- RowsCopiedEventArgs.cs
- TextCharacters.cs
- PropertyMapper.cs
- PlacementWorkspace.cs
- TextRunCacheImp.cs
- ContentOperations.cs
- ExtendedProtectionPolicyElement.cs
- StaticSiteMapProvider.cs
- SmtpAuthenticationManager.cs
- ImageUrlEditor.cs
- RowParagraph.cs
- AdornerPresentationContext.cs
- SecurityToken.cs
- MouseEventArgs.cs
- XmlSerializableReader.cs
- RowToFieldTransformer.cs
- SizeFConverter.cs
- DataGridViewLinkCell.cs
- DisplayInformation.cs
- NominalTypeEliminator.cs
- HtmlLabelAdapter.cs
- XPathParser.cs