Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- SizeKeyFrameCollection.cs
- ListViewInsertEventArgs.cs
- BindUriHelper.cs
- WrappedIUnknown.cs
- RepeatButton.cs
- XmlWriterSettings.cs
- BinaryNegotiation.cs
- DeflateStream.cs
- ThreadExceptionDialog.cs
- BitmapSource.cs
- tooltip.cs
- PackagePartCollection.cs
- ECDiffieHellmanCngPublicKey.cs
- ProfessionalColors.cs
- BStrWrapper.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- ExpressionBuilder.cs
- EnumType.cs
- FormViewPagerRow.cs
- DbConnectionPoolGroupProviderInfo.cs
- TextShapeableCharacters.cs
- DataGridViewButtonColumn.cs
- OracleDataAdapter.cs
- BigInt.cs
- DesignerToolboxInfo.cs
- SemaphoreSecurity.cs
- SessionStateItemCollection.cs
- X509Utils.cs
- PointCollection.cs
- Application.cs
- PeerToPeerException.cs
- EtwTrace.cs
- WebPartConnectionsCancelEventArgs.cs
- WhereQueryOperator.cs
- ToolStripOverflow.cs
- ImplicitInputBrush.cs
- HandlerBase.cs
- NGCSerializationManagerAsync.cs
- KoreanCalendar.cs
- ByteAnimation.cs
- BufferedGraphicsContext.cs
- PopupControlService.cs
- DynamicObject.cs
- PeerInputChannelListener.cs
- EventMappingSettings.cs
- Configuration.cs
- safex509handles.cs
- DataGridItemEventArgs.cs
- ImmutableObjectAttribute.cs
- WebPart.cs
- FocusTracker.cs
- InkCollectionBehavior.cs
- ToolStripDesigner.cs
- XsltLoader.cs
- EventRecord.cs
- JapaneseLunisolarCalendar.cs
- ScrollEventArgs.cs
- SQLInt64Storage.cs
- UICuesEvent.cs
- InfoCardAsymmetricCrypto.cs
- SourceItem.cs
- ContextBase.cs
- StringConverter.cs
- XmlSchemaSet.cs
- ZipIORawDataFileBlock.cs
- DataContract.cs
- Point4D.cs
- EnumUnknown.cs
- MaterialCollection.cs
- AttributeEmitter.cs
- ParserStack.cs
- HeaderedItemsControl.cs
- RectangleF.cs
- BindingEntityInfo.cs
- XmlDictionary.cs
- COSERVERINFO.cs
- ListViewPagedDataSource.cs
- Margins.cs
- ContextBase.cs
- ServiceAuthorizationElement.cs
- ToolboxComponentsCreatingEventArgs.cs
- TextDocumentView.cs
- EditorPart.cs
- ToolStrip.cs
- UdpChannelListener.cs
- ObjectNotFoundException.cs
- MediaContextNotificationWindow.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- UriTemplateCompoundPathSegment.cs
- TextServicesDisplayAttribute.cs
- CompilationSection.cs
- FixedSOMTextRun.cs
- Attributes.cs
- xmlsaver.cs
- SoapSchemaExporter.cs
- XsdValidatingReader.cs
- TextEndOfLine.cs
- ColorPalette.cs
- OletxTransactionManager.cs
- IndentTextWriter.cs