Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- JsonSerializer.cs
- CodeIterationStatement.cs
- UserCancellationException.cs
- MenuItemBindingCollection.cs
- ViewGenerator.cs
- SR.cs
- NumberSubstitution.cs
- EvidenceBase.cs
- StrokeNodeOperations2.cs
- GraphicsPathIterator.cs
- RemoteAsymmetricSignatureFormatter.cs
- TypeSemantics.cs
- SQLMembershipProvider.cs
- ProjectedSlot.cs
- BevelBitmapEffect.cs
- ContextMarshalException.cs
- EntityDataSourceContextCreatingEventArgs.cs
- StyleXamlTreeBuilder.cs
- PrivilegedConfigurationManager.cs
- Authorization.cs
- CodeAttributeDeclarationCollection.cs
- DynamicUpdateCommand.cs
- WindowsClaimSet.cs
- DataGridTable.cs
- LinqDataSource.cs
- SyntaxCheck.cs
- PackageRelationshipSelector.cs
- oledbconnectionstring.cs
- TreeNode.cs
- BuildManager.cs
- EntityDataSourceConfigureObjectContextPanel.cs
- DelegatingChannelListener.cs
- DataRelationCollection.cs
- SqlDataSourceConnectionPanel.cs
- SystemWebExtensionsSectionGroup.cs
- RightsManagementEncryptionTransform.cs
- AxHostDesigner.cs
- DiffuseMaterial.cs
- ToolboxComponentsCreatedEventArgs.cs
- SamlConditions.cs
- KnownIds.cs
- PassportAuthenticationModule.cs
- PointAnimationClockResource.cs
- VectorAnimationBase.cs
- DataSourceXmlAttributeAttribute.cs
- RegularExpressionValidator.cs
- FixedSOMTableCell.cs
- SvcMapFileLoader.cs
- ConnectionPointCookie.cs
- KeyGestureConverter.cs
- XmlSchemaNotation.cs
- IdentityVerifier.cs
- AppearanceEditorPart.cs
- RewritingPass.cs
- FlowDocumentPaginator.cs
- RowVisual.cs
- Vector3DCollectionConverter.cs
- VoiceSynthesis.cs
- LineBreak.cs
- MatrixTransform.cs
- DBDataPermission.cs
- UnlockInstanceAsyncResult.cs
- ListBindingConverter.cs
- ClientEventManager.cs
- BindingContext.cs
- DetailsViewUpdateEventArgs.cs
- SettingsContext.cs
- ClientBuildManagerCallback.cs
- XmlArrayItemAttribute.cs
- DataServiceQueryOfT.cs
- HtmlInputRadioButton.cs
- TextSegment.cs
- DelegateTypeInfo.cs
- ClickablePoint.cs
- ClientFactory.cs
- OverflowException.cs
- LazyTextWriterCreator.cs
- NotFiniteNumberException.cs
- DocumentGrid.cs
- CommonProperties.cs
- DesignDataSource.cs
- ClickablePoint.cs
- FilterException.cs
- HttpCachePolicy.cs
- DesignerAdapterUtil.cs
- ProtectedConfigurationSection.cs
- TimelineClockCollection.cs
- InternalControlCollection.cs
- TrackingAnnotationCollection.cs
- SchemaTableOptionalColumn.cs
- DBSqlParserColumn.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- HandlerFactoryCache.cs
- DateTimeValueSerializer.cs
- HtmlInputControl.cs
- CalendarDataBindingHandler.cs
- DesignerListAdapter.cs
- PerformanceCountersElement.cs
- AssemblySettingAttributes.cs
- ContainerSelectorBehavior.cs