Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeDelegateInvokeExpression.cs / 1 / CodeDelegateInvokeExpression.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeDelegateInvokeExpression : CodeExpression { private CodeExpression targetObject; private CodeExpressionCollection parameters = new CodeExpressionCollection(); ////// Represents an /// expression that invokes a delegate. /// ////// public CodeDelegateInvokeExpression() { } ////// Initializes a new instance of ///. /// /// public CodeDelegateInvokeExpression(CodeExpression targetObject) { TargetObject = targetObject; } ////// Initializes a new instance of ///. /// /// public CodeDelegateInvokeExpression(CodeExpression targetObject, params CodeExpression[] parameters) { TargetObject = targetObject; Parameters.AddRange(parameters); } ////// Initializes a new instance of ////// . /// /// public CodeExpression TargetObject { get { return targetObject; } set { this.targetObject = value; } } ////// The /// delegate's target object. /// ////// public CodeExpressionCollection Parameters { get { return parameters; } } } }/// The /// delegate parameters. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodeSnippetTypeMember.cs
- WmpBitmapDecoder.cs
- ConfigurationElementProperty.cs
- DesignerDataStoredProcedure.cs
- ListViewTableRow.cs
- X509WindowsSecurityToken.cs
- PersonalizationStateInfo.cs
- DbProviderSpecificTypePropertyAttribute.cs
- PrefixHandle.cs
- handlecollector.cs
- CurrencyManager.cs
- RSAOAEPKeyExchangeFormatter.cs
- Int32Animation.cs
- NodeLabelEditEvent.cs
- CollectionChangeEventArgs.cs
- CompilerError.cs
- DesignerTextBoxAdapter.cs
- SrgsSubset.cs
- QilUnary.cs
- StringFormat.cs
- UIElement3DAutomationPeer.cs
- TextTreeDeleteContentUndoUnit.cs
- DeclaredTypeValidator.cs
- ResourceDisplayNameAttribute.cs
- PreservationFileWriter.cs
- Point.cs
- RtType.cs
- Transactions.cs
- PropertyInfoSet.cs
- Viewport3DAutomationPeer.cs
- XmlParserContext.cs
- ComContractElementCollection.cs
- Version.cs
- StackOverflowException.cs
- ConfigurationConverterBase.cs
- GetPageCompletedEventArgs.cs
- CSharpCodeProvider.cs
- SoapEnvelopeProcessingElement.cs
- KeyInfo.cs
- ProcessModule.cs
- DESCryptoServiceProvider.cs
- PassportAuthentication.cs
- documentsequencetextcontainer.cs
- BamlStream.cs
- PropertyPathConverter.cs
- KeyEventArgs.cs
- ToolStripDropDown.cs
- IPEndPointCollection.cs
- MruCache.cs
- GacUtil.cs
- PreDigestedSignedInfo.cs
- ProvideValueServiceProvider.cs
- httpapplicationstate.cs
- WebRequest.cs
- Renderer.cs
- MemoryResponseElement.cs
- XmlTextReader.cs
- UnionExpr.cs
- DataTableReaderListener.cs
- XPathSelfQuery.cs
- Compilation.cs
- FreezableOperations.cs
- FixedSOMPage.cs
- CharacterBuffer.cs
- FeatureSupport.cs
- CodeDomComponentSerializationService.cs
- ListViewItem.cs
- BasePropertyDescriptor.cs
- SystemIPGlobalProperties.cs
- nulltextnavigator.cs
- FormsIdentity.cs
- ClientScriptManager.cs
- DefaultBinder.cs
- ProxyHwnd.cs
- ComponentSerializationService.cs
- Expander.cs
- CacheDependency.cs
- PassportPrincipal.cs
- PriorityChain.cs
- _BaseOverlappedAsyncResult.cs
- InteropAutomationProvider.cs
- HandlerFactoryWrapper.cs
- BaseCollection.cs
- HMAC.cs
- RewritingProcessor.cs
- TextElementCollection.cs
- HttpStreamFormatter.cs
- ErrorRuntimeConfig.cs
- RangeContentEnumerator.cs
- WindowsHyperlink.cs
- DeviceContexts.cs
- DescendantOverDescendantQuery.cs
- HttpWrapper.cs
- WindowsAltTab.cs
- TextElementCollection.cs
- PartialCachingControl.cs
- MenuItem.cs
- ListSurrogate.cs
- BaseAsyncResult.cs
- SmiEventSink.cs