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
- DataObjectPastingEventArgs.cs
- RegistryDataKey.cs
- StatusBarAutomationPeer.cs
- SortQuery.cs
- ObjectListDesigner.cs
- DataSourceCacheDurationConverter.cs
- DataSvcMapFile.cs
- SchemaMapping.cs
- CopyOfAction.cs
- EditingScopeUndoUnit.cs
- SQLDoubleStorage.cs
- DesignTimeVisibleAttribute.cs
- CopyCodeAction.cs
- ResourceDescriptionAttribute.cs
- Context.cs
- Size3D.cs
- SelectedDatesCollection.cs
- OracleInfoMessageEventArgs.cs
- DaylightTime.cs
- ExceptionValidationRule.cs
- DataBindingsDialog.cs
- ConfigXmlCDataSection.cs
- ParameterToken.cs
- PresentationSource.cs
- QuaternionKeyFrameCollection.cs
- CryptoKeySecurity.cs
- ToolStripLocationCancelEventArgs.cs
- WeakReferenceEnumerator.cs
- UserInitiatedNavigationPermission.cs
- NetworkCredential.cs
- TextTreeText.cs
- UnauthorizedWebPart.cs
- EntityConnectionStringBuilder.cs
- DPTypeDescriptorContext.cs
- XslException.cs
- Margins.cs
- HelpProvider.cs
- LayoutSettings.cs
- SafeArrayRankMismatchException.cs
- CompareInfo.cs
- MediaPlayer.cs
- SingleAnimationBase.cs
- FrameworkContentElement.cs
- DataGridItem.cs
- UITypeEditor.cs
- TextFormatterHost.cs
- NativeMethods.cs
- ClaimTypes.cs
- AbsoluteQuery.cs
- CodeCatchClauseCollection.cs
- MarginsConverter.cs
- FloaterBaseParagraph.cs
- DataServiceQuery.cs
- safelink.cs
- SoapTypeAttribute.cs
- FSWPathEditor.cs
- Util.cs
- SqlBooleanizer.cs
- NativeMethods.cs
- DataFieldCollectionEditor.cs
- WebConfigurationManager.cs
- ThreadStateException.cs
- OracleBoolean.cs
- HttpWebRequestElement.cs
- AttachmentCollection.cs
- SqlProcedureAttribute.cs
- Point.cs
- CharUnicodeInfo.cs
- AudioBase.cs
- TimeSpanStorage.cs
- EntryPointNotFoundException.cs
- ILGenerator.cs
- keycontainerpermission.cs
- JsonCollectionDataContract.cs
- ToolStripItemCollection.cs
- Semaphore.cs
- HMACSHA256.cs
- MimeBasePart.cs
- DbgUtil.cs
- ScrollItemPatternIdentifiers.cs
- EventSetter.cs
- Message.cs
- CatalogPartCollection.cs
- ConnectionManagementElementCollection.cs
- FaultReasonText.cs
- LicFileLicenseProvider.cs
- ClientTargetCollection.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- Char.cs
- PointCollectionConverter.cs
- TextDecoration.cs
- DayRenderEvent.cs
- GuidTagList.cs
- Attributes.cs
- RtfToXamlReader.cs
- SharedPerformanceCounter.cs
- BufferedGraphics.cs
- ObjectDataSourceView.cs
- JsonEnumDataContract.cs
- _Events.cs