Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- GroupBoxRenderer.cs
- SystemSounds.cs
- StateMachineDesignerPaint.cs
- CorrelationValidator.cs
- XmlObjectSerializerReadContextComplex.cs
- Size3D.cs
- ClientSettingsStore.cs
- SplitterCancelEvent.cs
- OptimisticConcurrencyException.cs
- ListViewInsertionMark.cs
- FrameworkElement.cs
- Soap.cs
- XmlSchemaSimpleContentRestriction.cs
- UnionCqlBlock.cs
- BaseProcessProtocolHandler.cs
- KnownColorTable.cs
- AuthenticationServiceManager.cs
- DeferredElementTreeState.cs
- XmlNamespaceDeclarationsAttribute.cs
- TextDpi.cs
- XmlUrlEditor.cs
- ContextProperty.cs
- StringAnimationUsingKeyFrames.cs
- Point3DAnimation.cs
- DesignOnlyAttribute.cs
- XPathArrayIterator.cs
- Border.cs
- TrackingMemoryStream.cs
- DataObjectMethodAttribute.cs
- XsdDuration.cs
- View.cs
- BinaryFormatterWriter.cs
- MembershipAdapter.cs
- ColorIndependentAnimationStorage.cs
- DispatchWrapper.cs
- Rect.cs
- AmbientValueAttribute.cs
- AddInControllerImpl.cs
- UniqueIdentifierService.cs
- ElementFactory.cs
- WindowsImpersonationContext.cs
- PointCollection.cs
- OrderedDictionary.cs
- FileDialog_Vista.cs
- RowToParametersTransformer.cs
- ObjectManager.cs
- EdmSchemaAttribute.cs
- EncryptedPackage.cs
- XmlNamespaceManager.cs
- SerTrace.cs
- Exception.cs
- ChangeTracker.cs
- _DisconnectOverlappedAsyncResult.cs
- OutputWindow.cs
- UxThemeWrapper.cs
- PageStatePersister.cs
- WebDescriptionAttribute.cs
- SqlAggregateChecker.cs
- WebPartCollection.cs
- DataKeyPropertyAttribute.cs
- PartialCachingControl.cs
- ProxyWebPartConnectionCollection.cs
- MouseEventArgs.cs
- ParagraphVisual.cs
- TrustManagerPromptUI.cs
- BufferBuilder.cs
- TextTabProperties.cs
- ViewSimplifier.cs
- CounterSample.cs
- objectquery_tresulttype.cs
- CFGGrammar.cs
- SparseMemoryStream.cs
- DataPager.cs
- DictionaryContent.cs
- BufferBuilder.cs
- PerformanceCounterManager.cs
- DirectionalLight.cs
- Token.cs
- datacache.cs
- XmlWriterDelegator.cs
- EventRouteFactory.cs
- COM2IDispatchConverter.cs
- TraceLog.cs
- RewritingSimplifier.cs
- SqlNodeAnnotations.cs
- XmlILStorageConverter.cs
- WebUtil.cs
- SendParametersContent.cs
- CheckPair.cs
- NamespaceQuery.cs
- COM2IDispatchConverter.cs
- ScrollChrome.cs
- SystemIPGlobalProperties.cs
- VisualTreeHelper.cs
- ColorTransformHelper.cs
- SerializationSectionGroup.cs
- SystemInfo.cs
- WSDualHttpBindingElement.cs
- OutputCacheModule.cs
- Comparer.cs