Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / QIL / QilInvokeEarlyBound.cs / 1305376 / QilInvokeEarlyBound.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Reflection; namespace System.Xml.Xsl.Qil { ////// A function invocation node which reperesents a call to an early bound Clr function. /// internal class QilInvokeEarlyBound : QilTernary { //----------------------------------------------- // Constructor //----------------------------------------------- ////// Construct a new node /// /// QilLiteral containing the Clr MethodInfo for the early bound function public QilInvokeEarlyBound(QilNodeType nodeType, QilNode name, QilNode method, QilNode arguments, XmlQueryType resultType) : base(nodeType, name, method, arguments) { this.xmlType = resultType; } //----------------------------------------------- // QilInvokeEarlyBound methods //----------------------------------------------- public QilName Name { get { return (QilName) Left; } set { Left = value; } } public MethodInfo ClrMethod { get { return (MethodInfo) ((QilLiteral) Center).Value; } set { ((QilLiteral) Center).Value = value; } } public QilList Arguments { get { return (QilList) Right; } set { Right = value; } } } } // 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
- CharStorage.cs
- ForceCopyBuildProvider.cs
- OleDbCommandBuilder.cs
- PersistenceProvider.cs
- TypeDescriptionProvider.cs
- SchemaMerger.cs
- UInt16Converter.cs
- WindowShowOrOpenTracker.cs
- EventLogger.cs
- InkCanvasInnerCanvas.cs
- NativeMethods.cs
- CookieHandler.cs
- StickyNoteHelper.cs
- ServerValidateEventArgs.cs
- MappingSource.cs
- ObjectItemLoadingSessionData.cs
- SelectionListComponentEditor.cs
- StaticExtensionConverter.cs
- PasswordRecoveryAutoFormat.cs
- ChangesetResponse.cs
- BulletedListEventArgs.cs
- MD5Cng.cs
- Point4D.cs
- ProjectionPathBuilder.cs
- GridEntryCollection.cs
- WebBrowserEvent.cs
- SmiEventSink_Default.cs
- ConstNode.cs
- EntityDataSourceContextCreatingEventArgs.cs
- ImageAttributes.cs
- PasswordTextNavigator.cs
- ToolStripContentPanelRenderEventArgs.cs
- ListBoxItemWrapperAutomationPeer.cs
- WebBrowser.cs
- TreeIterator.cs
- PaintEvent.cs
- TextParagraphView.cs
- StateChangeEvent.cs
- UriTemplateQueryValue.cs
- LayoutSettings.cs
- DocumentAutomationPeer.cs
- OptimizerPatterns.cs
- CapabilitiesSection.cs
- StrongNameIdentityPermission.cs
- LineBreak.cs
- AttachInfo.cs
- FormViewDeleteEventArgs.cs
- UnsafeNativeMethods.cs
- BinaryObjectInfo.cs
- SecurityUtils.cs
- SqlDataSourceCommandEventArgs.cs
- DataGridLinkButton.cs
- TrustLevelCollection.cs
- Base64Encoding.cs
- TextTreeRootNode.cs
- XmlILAnnotation.cs
- LostFocusEventManager.cs
- DocumentSequenceHighlightLayer.cs
- Size.cs
- RequestUriProcessor.cs
- SystemIPGlobalProperties.cs
- WindowsFormsLinkLabel.cs
- ProviderIncompatibleException.cs
- ValuePattern.cs
- DataGridPageChangedEventArgs.cs
- WebDescriptionAttribute.cs
- Content.cs
- DataGridViewTextBoxColumn.cs
- SiteMapNodeItem.cs
- HiddenFieldPageStatePersister.cs
- XmlValueConverter.cs
- HttpPostedFile.cs
- TextEditorDragDrop.cs
- NamespaceCollection.cs
- httpapplicationstate.cs
- XmlEncodedRawTextWriter.cs
- TrustManagerMoreInformation.cs
- DateBoldEvent.cs
- BitmapDecoder.cs
- VirtualDirectoryMappingCollection.cs
- OrderedEnumerableRowCollection.cs
- DataBindingExpressionBuilder.cs
- FaultImportOptions.cs
- VisualBrush.cs
- Unit.cs
- ResourceDefaultValueAttribute.cs
- SID.cs
- XsltOutput.cs
- HttpProcessUtility.cs
- ExceptionHelpers.cs
- NetworkStream.cs
- TypeBuilder.cs
- WindowsIdentity.cs
- RegexRunner.cs
- ResourceExpressionBuilder.cs
- ListBox.cs
- InputBinder.cs
- BooleanToVisibilityConverter.cs
- CodeIndexerExpression.cs
- ExitEventArgs.cs