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
- QilStrConcat.cs
- Animatable.cs
- GetWinFXPath.cs
- SqlCommand.cs
- RichTextBox.cs
- DependsOnAttribute.cs
- DecimalAnimationUsingKeyFrames.cs
- SelectorItemAutomationPeer.cs
- DrawListViewSubItemEventArgs.cs
- ScrollBarRenderer.cs
- WebPartVerb.cs
- TogglePattern.cs
- PartialTrustVisibleAssembliesSection.cs
- FontStretchConverter.cs
- CodePageUtils.cs
- DataServiceBehavior.cs
- SoapMessage.cs
- DesignBindingPropertyDescriptor.cs
- MergeFailedEvent.cs
- PageCatalogPart.cs
- XmlArrayItemAttribute.cs
- RadioButtonAutomationPeer.cs
- XmlReflectionMember.cs
- securestring.cs
- PropertyFilterAttribute.cs
- ProgressChangedEventArgs.cs
- ClientScriptManager.cs
- NetworkCredential.cs
- ProviderSettingsCollection.cs
- SatelliteContractVersionAttribute.cs
- InstanceDataCollectionCollection.cs
- X509Chain.cs
- WindowsGraphics2.cs
- Base64Encoder.cs
- DefaultHttpHandler.cs
- PaperSource.cs
- DataServiceQueryOfT.cs
- EncryptedXml.cs
- StateMachineDesignerPaint.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- GridView.cs
- TableLayoutStyleCollection.cs
- AvTraceDetails.cs
- QueryableDataSourceHelper.cs
- MultiTouchSystemGestureLogic.cs
- DictionaryTraceRecord.cs
- DeadCharTextComposition.cs
- MonthChangedEventArgs.cs
- AvTraceDetails.cs
- SoapElementAttribute.cs
- XmlSchemaAnyAttribute.cs
- login.cs
- DataFormats.cs
- PublisherIdentityPermission.cs
- NativeWrapper.cs
- TypeDescriptionProvider.cs
- TextEditorCharacters.cs
- QueryOperationResponseOfT.cs
- HtmlSelectionListAdapter.cs
- EventLogPermission.cs
- ExpressionQuoter.cs
- FormsAuthenticationConfiguration.cs
- AttachedAnnotation.cs
- InfiniteTimeSpanConverter.cs
- TypeDependencyAttribute.cs
- DataColumn.cs
- CompModSwitches.cs
- DocumentViewerBaseAutomationPeer.cs
- Rect3DConverter.cs
- SqlProviderServices.cs
- HatchBrush.cs
- Drawing.cs
- AppDomainUnloadedException.cs
- DataTablePropertyDescriptor.cs
- ViewSimplifier.cs
- DataRow.cs
- EventRoute.cs
- FormView.cs
- AppSettingsSection.cs
- XmlWhitespace.cs
- ToolStripSplitButton.cs
- GridViewSortEventArgs.cs
- FontStyles.cs
- ToolStripContainer.cs
- TableAdapterManagerHelper.cs
- Util.cs
- SerializationException.cs
- TransformValueSerializer.cs
- SecureEnvironment.cs
- DynamicArgumentDialog.cs
- PublisherIdentityPermission.cs
- CreateDataSourceDialog.cs
- WindowsGraphicsCacheManager.cs
- SmtpFailedRecipientsException.cs
- CompositionAdorner.cs
- InputLangChangeEvent.cs
- BamlWriter.cs
- BasicAsyncResult.cs
- WindowsSlider.cs
- Utils.cs