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 / WithParamAction.cs / 1 / WithParamAction.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.Collections; using System.Xml; using System.Xml.XPath; internal class WithParamAction : VariableAction { internal WithParamAction() : base(VariableType.WithParameter) {} internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, this.name, Keywords.s_Name); if (compiler.Recurse()) { CompileTemplate(compiler); compiler.ToParent(); if (this.selectKey != Compiler.InvalidQueryKey && this.containedActions != null) { throw XsltException.Create(Res.Xslt_VariableCntSel2, this.nameStr); } } } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); object ParamValue; switch(frame.State) { case Initialized: if (this.selectKey != Compiler.InvalidQueryKey) { ParamValue = processor.RunQuery(frame, this.selectKey); processor.SetParameter(this.name, ParamValue); frame.Finished(); } else { if (this.containedActions == null) { processor.SetParameter(this.name, string.Empty); frame.Finished(); break; } NavigatorOutput output = new NavigatorOutput(baseUri); processor.PushOutput(output); processor.PushActionFrame(frame); frame.State = ProcessingChildren; } break; case ProcessingChildren: RecordOutput recOutput = processor.PopOutput(); Debug.Assert(recOutput is NavigatorOutput); processor.SetParameter(this.name,((NavigatorOutput)recOutput).Navigator); frame.Finished(); break; default: Debug.Fail("Invalid execution state inside VariableAction.Execute"); 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.Collections; using System.Xml; using System.Xml.XPath; internal class WithParamAction : VariableAction { internal WithParamAction() : base(VariableType.WithParameter) {} internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, this.name, Keywords.s_Name); if (compiler.Recurse()) { CompileTemplate(compiler); compiler.ToParent(); if (this.selectKey != Compiler.InvalidQueryKey && this.containedActions != null) { throw XsltException.Create(Res.Xslt_VariableCntSel2, this.nameStr); } } } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); object ParamValue; switch(frame.State) { case Initialized: if (this.selectKey != Compiler.InvalidQueryKey) { ParamValue = processor.RunQuery(frame, this.selectKey); processor.SetParameter(this.name, ParamValue); frame.Finished(); } else { if (this.containedActions == null) { processor.SetParameter(this.name, string.Empty); frame.Finished(); break; } NavigatorOutput output = new NavigatorOutput(baseUri); processor.PushOutput(output); processor.PushActionFrame(frame); frame.State = ProcessingChildren; } break; case ProcessingChildren: RecordOutput recOutput = processor.PopOutput(); Debug.Assert(recOutput is NavigatorOutput); processor.SetParameter(this.name,((NavigatorOutput)recOutput).Navigator); frame.Finished(); break; default: Debug.Fail("Invalid execution state inside VariableAction.Execute"); 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
- CalendarModeChangedEventArgs.cs
- BaseValidator.cs
- CodeDOMUtility.cs
- CmsInterop.cs
- RangeBase.cs
- DeploymentSection.cs
- ExpanderAutomationPeer.cs
- altserialization.cs
- List.cs
- UniqueID.cs
- WindowsButton.cs
- XmlSchemaDatatype.cs
- Enum.cs
- SmtpCommands.cs
- Root.cs
- MailMessage.cs
- SettingsAttributes.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- mda.cs
- StrongTypingException.cs
- Configuration.cs
- BinHexDecoder.cs
- ByteAnimationBase.cs
- LocalizableResourceBuilder.cs
- Misc.cs
- CryptoApi.cs
- ResXDataNode.cs
- XmlBaseReader.cs
- translator.cs
- MetafileHeader.cs
- HtmlAnchor.cs
- ProvidePropertyAttribute.cs
- ToolStripRenderEventArgs.cs
- XmlTextWriter.cs
- PagedDataSource.cs
- CompensableActivity.cs
- XmlSchemaSimpleContent.cs
- RelationalExpressions.cs
- LineBreak.cs
- ControlDesignerState.cs
- DataGridViewDataErrorEventArgs.cs
- IHttpResponseInternal.cs
- StreamGeometry.cs
- DiagnosticsConfigurationHandler.cs
- IDispatchConstantAttribute.cs
- ObjectContextServiceProvider.cs
- RawStylusSystemGestureInputReport.cs
- BaseUriHelper.cs
- FunctionNode.cs
- DataListAutoFormat.cs
- GridViewActionList.cs
- TabPageDesigner.cs
- PowerEase.cs
- SchemaImporterExtensionElement.cs
- ScalarType.cs
- PropertyValueUIItem.cs
- MailDefinition.cs
- SqlBulkCopyColumnMappingCollection.cs
- XslException.cs
- Helpers.cs
- AnimationLayer.cs
- SerializationAttributes.cs
- TrackBar.cs
- PaintEvent.cs
- SqlBulkCopyColumnMappingCollection.cs
- WebAdminConfigurationHelper.cs
- OracleConnectionFactory.cs
- MSAAEventDispatcher.cs
- ConsumerConnectionPointCollection.cs
- ResourceKey.cs
- TypographyProperties.cs
- Unit.cs
- SafeLibraryHandle.cs
- Converter.cs
- ScriptingWebServicesSectionGroup.cs
- FixedPage.cs
- RegexFCD.cs
- PathNode.cs
- BaseTemplateParser.cs
- DataGridItemAutomationPeer.cs
- QueryableFilterUserControl.cs
- XmlCharacterData.cs
- ClientData.cs
- XmlSchemaSet.cs
- DropDownHolder.cs
- PtsHelper.cs
- InputMethod.cs
- SelectedDatesCollection.cs
- FileLogRecordStream.cs
- DBNull.cs
- TreeNodeCollection.cs
- Matrix3D.cs
- VectorAnimation.cs
- LoginView.cs
- AssociationTypeEmitter.cs
- EventsTab.cs
- xmlfixedPageInfo.cs
- HighlightVisual.cs
- SmiContextFactory.cs
- InternalException.cs