Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / XmlUtils / System / Xml / Xsl / QIL / QilFunction.cs / 1 / QilFunction.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Diagnostics; namespace System.Xml.Xsl.Qil { ////// An anonymous QilExpression function node. /// ////// internal class QilFunction : QilReference { private QilNode arguments, definition, sideEffects; //----------------------------------------------- // Constructor //----------------------------------------------- ///Function is a block, so it may introduce assignments (scoped to the function body). /// Additionally, it has an argument list, which will be assigned values /// when the function is invoked. ///The XmlType property defines the expected return type of this function. /// Normally, this should be the same as its definition's types, so setting the function /// definition changes the function's types. In some rare cases, a compiler may wish to /// override the types after setting the function's definition (for example, an XQuery /// might define a function's return type to be wider than its definition would imply.) ////// Construct a node /// public QilFunction(QilNodeType nodeType, QilNode arguments, QilNode definition, QilNode sideEffects, XmlQueryType resultType) : base(nodeType) { this.arguments = arguments; this.definition = definition; this.sideEffects = sideEffects; this.xmlType = resultType; } //----------------------------------------------- // IListmethods -- override //----------------------------------------------- public override int Count { get { return 3; } } public override QilNode this[int index] { get { switch (index) { case 0: return this.arguments; case 1: return this.definition; case 2: return this.sideEffects; default: throw new IndexOutOfRangeException(); } } set { switch (index) { case 0: this.arguments = value; break; case 1: this.definition = value; break; case 2: this.sideEffects = value; break; default: throw new IndexOutOfRangeException(); } } } //----------------------------------------------- // QilFunction methods //----------------------------------------------- /// /// Formal arguments of this function. /// public QilList Arguments { get { return (QilList) this.arguments; } set { this.arguments = value; } } ////// Body of this function. /// public QilNode Definition { get { return this.definition; } set { this.definition = value; } } ////// QilNodeType.True if this function might have side-effects. /// public bool MaybeSideEffects { get { return this.sideEffects.NodeType == QilNodeType.True; } set { this.sideEffects.NodeType = value ? QilNodeType.True : QilNodeType.False; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Diagnostics; namespace System.Xml.Xsl.Qil { ////// An anonymous QilExpression function node. /// ////// internal class QilFunction : QilReference { private QilNode arguments, definition, sideEffects; //----------------------------------------------- // Constructor //----------------------------------------------- ///Function is a block, so it may introduce assignments (scoped to the function body). /// Additionally, it has an argument list, which will be assigned values /// when the function is invoked. ///The XmlType property defines the expected return type of this function. /// Normally, this should be the same as its definition's types, so setting the function /// definition changes the function's types. In some rare cases, a compiler may wish to /// override the types after setting the function's definition (for example, an XQuery /// might define a function's return type to be wider than its definition would imply.) ////// Construct a node /// public QilFunction(QilNodeType nodeType, QilNode arguments, QilNode definition, QilNode sideEffects, XmlQueryType resultType) : base(nodeType) { this.arguments = arguments; this.definition = definition; this.sideEffects = sideEffects; this.xmlType = resultType; } //----------------------------------------------- // IListmethods -- override //----------------------------------------------- public override int Count { get { return 3; } } public override QilNode this[int index] { get { switch (index) { case 0: return this.arguments; case 1: return this.definition; case 2: return this.sideEffects; default: throw new IndexOutOfRangeException(); } } set { switch (index) { case 0: this.arguments = value; break; case 1: this.definition = value; break; case 2: this.sideEffects = value; break; default: throw new IndexOutOfRangeException(); } } } //----------------------------------------------- // QilFunction methods //----------------------------------------------- /// /// Formal arguments of this function. /// public QilList Arguments { get { return (QilList) this.arguments; } set { this.arguments = value; } } ////// Body of this function. /// public QilNode Definition { get { return this.definition; } set { this.definition = value; } } ////// QilNodeType.True if this function might have side-effects. /// public bool MaybeSideEffects { get { return this.sideEffects.NodeType == QilNodeType.True; } set { this.sideEffects.NodeType = value ? QilNodeType.True : QilNodeType.False; } } } } // 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
- listitem.cs
- PtsHost.cs
- ApplicationManager.cs
- ListContractAdapter.cs
- SecureConversationServiceCredential.cs
- HttpServerVarsCollection.cs
- WebBrowserSiteBase.cs
- DrawListViewColumnHeaderEventArgs.cs
- EntitySetDataBindingList.cs
- ContextToken.cs
- CursorInteropHelper.cs
- TemplateAction.cs
- LocalizationComments.cs
- SapiInterop.cs
- ProjectionPathBuilder.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- ClientSettingsProvider.cs
- TriggerCollection.cs
- TransactionsSectionGroup.cs
- XmlQueryStaticData.cs
- CommandValueSerializer.cs
- ListViewItemSelectionChangedEvent.cs
- QuaternionKeyFrameCollection.cs
- PolygonHotSpot.cs
- DesignerResources.cs
- WebOperationContext.cs
- COM2PropertyDescriptor.cs
- EditorPartChrome.cs
- BaseTemplateCodeDomTreeGenerator.cs
- figurelength.cs
- _HeaderInfoTable.cs
- CustomError.cs
- Style.cs
- CFStream.cs
- TypeContext.cs
- FileDialogCustomPlace.cs
- SmiSettersStream.cs
- parserscommon.cs
- TypeUsage.cs
- FieldToken.cs
- Misc.cs
- BitmapEffect.cs
- Latin1Encoding.cs
- NonVisualControlAttribute.cs
- GetChildSubtree.cs
- SemanticBasicElement.cs
- PassportAuthenticationModule.cs
- IntegerFacetDescriptionElement.cs
- WindowsTitleBar.cs
- MediaContextNotificationWindow.cs
- XmlUrlResolver.cs
- ListViewEditEventArgs.cs
- MarkupObject.cs
- IntSecurity.cs
- CompositionCommandSet.cs
- StackOverflowException.cs
- XmlWellformedWriter.cs
- UnsettableComboBox.cs
- unsafenativemethodsother.cs
- NetNamedPipeSecurityMode.cs
- RowSpanVector.cs
- SqlGenerator.cs
- ImpersonationContext.cs
- QilExpression.cs
- ArrayEditor.cs
- ScriptingSectionGroup.cs
- DaylightTime.cs
- OperationInvokerTrace.cs
- DesignerAttribute.cs
- RegexRunnerFactory.cs
- DrawTreeNodeEventArgs.cs
- ExtensionQuery.cs
- SyndicationSerializer.cs
- DataGridViewSelectedRowCollection.cs
- XPathPatternParser.cs
- TypeDependencyAttribute.cs
- CqlIdentifiers.cs
- HexParser.cs
- SessionSwitchEventArgs.cs
- StaticTextPointer.cs
- ChannelFactoryBase.cs
- SqlDataSourceCommandEventArgs.cs
- BinaryNode.cs
- PriorityQueue.cs
- PointF.cs
- InputEventArgs.cs
- ParameterRefs.cs
- IDataContractSurrogate.cs
- NumericExpr.cs
- Filter.cs
- DrawingCollection.cs
- GenericUriParser.cs
- FormatVersion.cs
- RectangleConverter.cs
- EntityClientCacheEntry.cs
- AnnotationAdorner.cs
- OleDbPermission.cs
- StrongName.cs
- IPAddress.cs
- CodePageUtils.cs