Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / MessageAction.cs / 1305376 / 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 (Ref.Equal(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 (Ref.Equal(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
- WebPartCatalogAddVerb.cs
- Stack.cs
- StreamWithDictionary.cs
- Lease.cs
- StreamUpgradeAcceptor.cs
- ResetableIterator.cs
- COM2ExtendedTypeConverter.cs
- DataGridDesigner.cs
- ActiveXHelper.cs
- PersianCalendar.cs
- RuntimeHelpers.cs
- XmlCodeExporter.cs
- UidPropertyAttribute.cs
- Vector3DConverter.cs
- ConstructorNeedsTagAttribute.cs
- DoubleStorage.cs
- SettingsAttributeDictionary.cs
- DoubleAverageAggregationOperator.cs
- FormViewCommandEventArgs.cs
- KeyGestureValueSerializer.cs
- SafeNativeMethods.cs
- InputMethodStateTypeInfo.cs
- Keywords.cs
- PngBitmapEncoder.cs
- ObjectQueryState.cs
- FilterRepeater.cs
- TextCompositionEventArgs.cs
- BitmapEffectDrawingContent.cs
- Exceptions.cs
- ClientProtocol.cs
- CodeCatchClause.cs
- GridViewHeaderRowPresenter.cs
- HitTestParameters3D.cs
- SqlDataSourceView.cs
- RenderData.cs
- SystemParameters.cs
- SafeRightsManagementQueryHandle.cs
- ArrayWithOffset.cs
- WindowsStatusBar.cs
- BooleanStorage.cs
- MetadataSource.cs
- ImageAnimator.cs
- WebSysDescriptionAttribute.cs
- PrintDialog.cs
- figurelength.cs
- SamlAction.cs
- InlinedAggregationOperatorEnumerator.cs
- WindowsToolbarAsMenu.cs
- SQLBytesStorage.cs
- HtmlContainerControl.cs
- ByteStreamGeometryContext.cs
- MailWebEventProvider.cs
- UTF8Encoding.cs
- CompensateDesigner.cs
- HttpRuntime.cs
- ListViewAutomationPeer.cs
- basecomparevalidator.cs
- Stylesheet.cs
- SystemIPInterfaceProperties.cs
- Set.cs
- NodeInfo.cs
- KeyInterop.cs
- RoleManagerSection.cs
- SoapInteropTypes.cs
- HttpFileCollection.cs
- MenuItemStyle.cs
- CodeLabeledStatement.cs
- EmptyQuery.cs
- EntityParameter.cs
- EdmSchemaAttribute.cs
- PageThemeParser.cs
- ClientBuildManager.cs
- ListSortDescription.cs
- UnconditionalPolicy.cs
- ConfigurationSectionGroup.cs
- DataContractSerializerOperationFormatter.cs
- SqlDataSourceConfigureFilterForm.cs
- XNodeNavigator.cs
- KnownIds.cs
- PathTooLongException.cs
- ResourceManager.cs
- Transform3DGroup.cs
- UInt32.cs
- FileLoadException.cs
- CmsInterop.cs
- SqlStatistics.cs
- SurrogateEncoder.cs
- PointF.cs
- ExpressionLexer.cs
- HtmlInputHidden.cs
- DetailsViewPagerRow.cs
- TextEndOfLine.cs
- TypeHelpers.cs
- XmlIgnoreAttribute.cs
- CodeMemberMethod.cs
- TickBar.cs
- SecurityPolicyVersion.cs
- JoinElimination.cs
- ProtocolsConfiguration.cs
- XmlSchemaSimpleContentRestriction.cs