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
- PointF.cs
- CollectionsUtil.cs
- DoubleCollectionConverter.cs
- WriteFileContext.cs
- SectionInput.cs
- AddInController.cs
- NotifyIcon.cs
- ListMarkerLine.cs
- SrgsOneOf.cs
- SQLByteStorage.cs
- SpellCheck.cs
- PolicyManager.cs
- FlowLayoutSettings.cs
- WindowsListView.cs
- SecurityResources.cs
- XPathItem.cs
- XmlEncoding.cs
- DataServices.cs
- WinFormsSpinner.cs
- CodeEntryPointMethod.cs
- RegexInterpreter.cs
- SingleResultAttribute.cs
- ToolStripSeparator.cs
- DeviceSpecificDialogCachedState.cs
- JsonFormatWriterGenerator.cs
- EditingMode.cs
- ParallelEnumerable.cs
- SQLGuid.cs
- Mutex.cs
- Translator.cs
- QuaternionConverter.cs
- HtmlGenericControl.cs
- NullableIntMinMaxAggregationOperator.cs
- versioninfo.cs
- WebRequestModuleElement.cs
- TerminatorSinks.cs
- ConfigurationPropertyAttribute.cs
- ToolStripDropDownClosedEventArgs.cs
- PathNode.cs
- DateTimeConverter2.cs
- ToolStripItemImageRenderEventArgs.cs
- SHA256.cs
- SoapProtocolImporter.cs
- ActionMessageFilterTable.cs
- State.cs
- VisualBasicExpressionConverter.cs
- LongValidatorAttribute.cs
- EventHandlersStore.cs
- Calendar.cs
- SafeNativeMethods.cs
- FakeModelPropertyImpl.cs
- Keywords.cs
- SchemaMapping.cs
- InternalsVisibleToAttribute.cs
- DbProviderFactoriesConfigurationHandler.cs
- RuntimeHelpers.cs
- NetStream.cs
- RegexBoyerMoore.cs
- InfiniteIntConverter.cs
- InternalCache.cs
- ResourceExpressionBuilder.cs
- EntityDataSourceDesigner.cs
- SqlBuffer.cs
- StandardOleMarshalObject.cs
- ProfileInfo.cs
- SafeNativeMethodsOther.cs
- Models.cs
- DesignerCategoryAttribute.cs
- XmlIlVisitor.cs
- ToolBar.cs
- DockAndAnchorLayout.cs
- SolidBrush.cs
- VerticalAlignConverter.cs
- ClientSession.cs
- SynchronizedInputAdaptor.cs
- EndpointAddressAugust2004.cs
- CodeMemberEvent.cs
- ConfigXmlCDataSection.cs
- StylusButtonEventArgs.cs
- storepermission.cs
- ObfuscateAssemblyAttribute.cs
- StickyNoteContentControl.cs
- FragmentQueryKB.cs
- XsltContext.cs
- StorageMappingFragment.cs
- TemplateNameScope.cs
- Subtree.cs
- HttpPostedFileWrapper.cs
- listviewsubitemcollectioneditor.cs
- BindingValueChangedEventArgs.cs
- TableAdapterManagerHelper.cs
- HttpValueCollection.cs
- RenderContext.cs
- DatagridviewDisplayedBandsData.cs
- TextTabProperties.cs
- AuthenticationModuleElement.cs
- FilterQuery.cs
- DBSqlParserTableCollection.cs
- Utils.cs
- FileClassifier.cs