Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / codemethodreferenceexpression.cs / 1305376 / codemethodreferenceexpression.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; using System.Runtime.Serialization; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeMethodReferenceExpression : CodeExpression { private CodeExpression targetObject; private string methodName; [OptionalField] private CodeTypeReferenceCollection typeArguments; ////// Represents an /// expression to invoke a method, to be called on a given target. /// ////// public CodeMethodReferenceExpression() { } ////// Initializes a new instance of ///. /// /// public CodeMethodReferenceExpression(CodeExpression targetObject, string methodName) { TargetObject = targetObject; MethodName = methodName; } public CodeMethodReferenceExpression(CodeExpression targetObject, string methodName, params CodeTypeReference[] typeParameters) { TargetObject = targetObject; MethodName = methodName; if( typeParameters != null && typeParameters.Length > 0) { TypeArguments.AddRange(typeParameters); } } ////// Initializes a new instance of ///using the specified /// target object and method name. /// /// public CodeExpression TargetObject { get { return targetObject; } set { this.targetObject = value; } } ////// Gets or sets the target object. /// ////// public string MethodName { get { return (methodName == null) ? string.Empty : methodName; } set { methodName = value; } } [System.Runtime.InteropServices.ComVisible(false)] public CodeTypeReferenceCollection TypeArguments{ get { if( typeArguments == null) { typeArguments = new CodeTypeReferenceCollection(); } return typeArguments; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets the name of the method to invoke. /// ///// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; using System.Runtime.Serialization; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeMethodReferenceExpression : CodeExpression { private CodeExpression targetObject; private string methodName; [OptionalField] private CodeTypeReferenceCollection typeArguments; ////// Represents an /// expression to invoke a method, to be called on a given target. /// ////// public CodeMethodReferenceExpression() { } ////// Initializes a new instance of ///. /// /// public CodeMethodReferenceExpression(CodeExpression targetObject, string methodName) { TargetObject = targetObject; MethodName = methodName; } public CodeMethodReferenceExpression(CodeExpression targetObject, string methodName, params CodeTypeReference[] typeParameters) { TargetObject = targetObject; MethodName = methodName; if( typeParameters != null && typeParameters.Length > 0) { TypeArguments.AddRange(typeParameters); } } ////// Initializes a new instance of ///using the specified /// target object and method name. /// /// public CodeExpression TargetObject { get { return targetObject; } set { this.targetObject = value; } } ////// Gets or sets the target object. /// ////// public string MethodName { get { return (methodName == null) ? string.Empty : methodName; } set { methodName = value; } } [System.Runtime.InteropServices.ComVisible(false)] public CodeTypeReferenceCollection TypeArguments{ get { if( typeArguments == null) { typeArguments = new CodeTypeReferenceCollection(); } return typeArguments; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets the name of the method to invoke. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RegexCaptureCollection.cs
- QueuedDeliveryRequirementsMode.cs
- ReflectionPermission.cs
- SqlUserDefinedTypeAttribute.cs
- ReadOnlyHierarchicalDataSource.cs
- XomlDesignerLoader.cs
- EntityDataSourceColumn.cs
- ToolBar.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- TimeSpanOrInfiniteValidator.cs
- AssociatedControlConverter.cs
- XmlParserContext.cs
- BroadcastEventHelper.cs
- PolicyChain.cs
- CopyOfAction.cs
- MultipleViewPattern.cs
- PeerInputChannel.cs
- DesignerVerb.cs
- Lease.cs
- CacheHelper.cs
- WindowsRegion.cs
- ConnectionManagementSection.cs
- X509Chain.cs
- storagemappingitemcollection.viewdictionary.cs
- RequestStatusBarUpdateEventArgs.cs
- TemplatedWizardStep.cs
- NodeLabelEditEvent.cs
- SchemaImporterExtensionElementCollection.cs
- UnsafeNativeMethods.cs
- Attributes.cs
- WebPartUserCapability.cs
- COM2IProvidePropertyBuilderHandler.cs
- InvalidateEvent.cs
- GeneralTransform3D.cs
- SqlUtils.cs
- KnownTypesProvider.cs
- FrugalMap.cs
- peersecurityelement.cs
- DropDownHolder.cs
- DbMetaDataFactory.cs
- SubpageParagraph.cs
- URLMembershipCondition.cs
- BindingBase.cs
- HttpRequest.cs
- DynamicPropertyHolder.cs
- ApplicationInfo.cs
- ChannelSinkStacks.cs
- ContextBase.cs
- RemotingService.cs
- ClientTargetSection.cs
- OneWayChannelListener.cs
- AdornerHitTestResult.cs
- TransformedBitmap.cs
- XsdDateTime.cs
- _NegotiateClient.cs
- DbProviderFactories.cs
- ConstraintStruct.cs
- MailBnfHelper.cs
- PathFigureCollectionValueSerializer.cs
- DoubleLinkList.cs
- DataGridRelationshipRow.cs
- TranslateTransform.cs
- WindowsSlider.cs
- VectorCollectionConverter.cs
- ByeOperation11AsyncResult.cs
- SiteMapDataSource.cs
- WorkflowStateRollbackService.cs
- UIAgentMonitor.cs
- DataGridCellsPanel.cs
- hresults.cs
- LinqDataSource.cs
- HyperLinkStyle.cs
- StylusPointPropertyInfo.cs
- TextServicesCompartmentEventSink.cs
- IndexedString.cs
- CompoundFileReference.cs
- BindingWorker.cs
- GenericEnumerator.cs
- SequenceDesigner.xaml.cs
- DataColumnMappingCollection.cs
- FieldInfo.cs
- BinaryFormatter.cs
- DocumentReference.cs
- Region.cs
- RSACryptoServiceProvider.cs
- MatrixAnimationUsingKeyFrames.cs
- ResolveCriteria11.cs
- WpfXamlLoader.cs
- SafeLibraryHandle.cs
- CustomError.cs
- SizeChangedInfo.cs
- TraceHelpers.cs
- Nullable.cs
- PanelDesigner.cs
- CodeIdentifier.cs
- LicFileLicenseProvider.cs
- WindowsListViewGroupHelper.cs
- TraceContextEventArgs.cs
- CodeThrowExceptionStatement.cs
- ListView.cs