Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / WithParamAction.cs / 1305376 / 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, "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, "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
- DataGridViewRowErrorTextNeededEventArgs.cs
- FileSystemEnumerable.cs
- CommandLibraryHelper.cs
- RadialGradientBrush.cs
- InvalidAsynchronousStateException.cs
- PageTheme.cs
- LayoutEngine.cs
- FormatSettings.cs
- StorageComplexPropertyMapping.cs
- EntityContainerRelationshipSet.cs
- RTLAwareMessageBox.cs
- DataGridCommandEventArgs.cs
- StylusPoint.cs
- ModelTreeEnumerator.cs
- GridViewColumn.cs
- ExpressionBindingCollection.cs
- SchemaCollectionPreprocessor.cs
- PageFunction.cs
- ManagementDateTime.cs
- DesignerGenericWebPart.cs
- ImportCatalogPart.cs
- PackageProperties.cs
- KeySplineConverter.cs
- DiagnosticsConfiguration.cs
- DataColumn.cs
- SpStreamWrapper.cs
- ApplyImportsAction.cs
- XmlChildNodes.cs
- ClusterRegistryConfigurationProvider.cs
- CrossContextChannel.cs
- SmiEventSink_Default.cs
- HttpFileCollection.cs
- WindowCollection.cs
- FrameworkName.cs
- Transform3D.cs
- Crc32.cs
- X509Chain.cs
- UnsafeNativeMethodsPenimc.cs
- TextDpi.cs
- BamlTreeNode.cs
- DataStorage.cs
- ClientFormsAuthenticationMembershipProvider.cs
- StorageEntitySetMapping.cs
- AuthStoreRoleProvider.cs
- WindowsGraphics.cs
- IsolationInterop.cs
- UriSchemeKeyedCollection.cs
- SecurityImpersonationBehavior.cs
- ServiceNameElement.cs
- RoutedEventArgs.cs
- Pool.cs
- LambdaCompiler.Unary.cs
- OleDbDataAdapter.cs
- WebPartCatalogAddVerb.cs
- PermissionListSet.cs
- ResolvedKeyFrameEntry.cs
- EncoderBestFitFallback.cs
- XPathAxisIterator.cs
- CompilerResults.cs
- UserPreferenceChangedEventArgs.cs
- XmlValidatingReader.cs
- ProcessStartInfo.cs
- SoapHeader.cs
- Region.cs
- EntityDataSourceConfigureObjectContextPanel.cs
- XsdDateTime.cs
- ServiceRoute.cs
- ReadonlyMessageFilter.cs
- AliasGenerator.cs
- BamlTreeUpdater.cs
- SafeSecurityHandles.cs
- WebBrowserContainer.cs
- WebPartMenu.cs
- ScriptingSectionGroup.cs
- ConnectionOrientedTransportBindingElement.cs
- InkCanvasSelection.cs
- TimerElapsedEvenArgs.cs
- CompositeScriptReference.cs
- RawTextInputReport.cs
- JavascriptCallbackBehaviorAttribute.cs
- MouseDevice.cs
- _NetworkingPerfCounters.cs
- Column.cs
- WindowsAuthenticationModule.cs
- Random.cs
- GAC.cs
- RegistryPermission.cs
- ClickablePoint.cs
- AmbientLight.cs
- TokenCreationParameter.cs
- KeyedCollection.cs
- ConstructorBuilder.cs
- UInt32.cs
- ExpressionVisitorHelpers.cs
- ImplicitInputBrush.cs
- Viewport3DVisual.cs
- WebPartConnectionsConnectVerb.cs
- FolderBrowserDialog.cs
- StateDesigner.LayoutSelectionGlyph.cs
- PageCodeDomTreeGenerator.cs