Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / codemethodreferenceexpression.cs / 1 / codemethodreferenceexpression.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; using System.Runtime.Serialization; ////// [ 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. /// ///// 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; using System.Runtime.Serialization; ////// [ 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
- ThemeDictionaryExtension.cs
- DBBindings.cs
- X509PeerCertificateAuthenticationElement.cs
- ADMembershipProvider.cs
- CacheDependency.cs
- XmlSchemaAny.cs
- CodeExpressionCollection.cs
- ToolStripContentPanelRenderEventArgs.cs
- OracleParameterBinding.cs
- TypeBuilder.cs
- Brushes.cs
- returneventsaver.cs
- HwndAppCommandInputProvider.cs
- TypeExtension.cs
- PointValueSerializer.cs
- TrustSection.cs
- SiblingIterators.cs
- CacheChildrenQuery.cs
- DocumentEventArgs.cs
- QilStrConcatenator.cs
- DurableErrorHandler.cs
- ViewGenerator.cs
- SharedUtils.cs
- BitSet.cs
- ObjectNotFoundException.cs
- SocketStream.cs
- ToolStripHighContrastRenderer.cs
- EntityParameterCollection.cs
- MappingModelBuildProvider.cs
- AuthenticationModuleElementCollection.cs
- StringFormat.cs
- RemotingServices.cs
- TypeResolvingOptions.cs
- ToolStripMenuItem.cs
- InvalidPropValue.cs
- PropertyGridEditorPart.cs
- TypeElementCollection.cs
- TimeManager.cs
- StaticSiteMapProvider.cs
- Propagator.JoinPropagator.cs
- CodeMethodReturnStatement.cs
- HwndSourceKeyboardInputSite.cs
- WinOEToolBoxItem.cs
- _ShellExpression.cs
- WebPartUserCapability.cs
- SizeConverter.cs
- AutoResizedEvent.cs
- ColumnCollection.cs
- RouteValueDictionary.cs
- RemoteAsymmetricSignatureFormatter.cs
- MultitargetUtil.cs
- FamilyTypeface.cs
- SelectedDatesCollection.cs
- ResourcePropertyMemberCodeDomSerializer.cs
- IPPacketInformation.cs
- MessageBox.cs
- FrameworkContextData.cs
- ObjectListItemCollection.cs
- XsltInput.cs
- TaskFileService.cs
- Hashtable.cs
- EditorPartCollection.cs
- compensatingcollection.cs
- MILUtilities.cs
- BackStopAuthenticationModule.cs
- TraceUtility.cs
- AuthenticationSection.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- PropertyValueChangedEvent.cs
- PeerEndPoint.cs
- ColorPalette.cs
- EdmTypeAttribute.cs
- CodeMethodInvokeExpression.cs
- NamespaceQuery.cs
- TranslateTransform3D.cs
- NodeFunctions.cs
- MembershipSection.cs
- recordstatefactory.cs
- SoapIncludeAttribute.cs
- AssemblyFilter.cs
- MemoryMappedViewStream.cs
- RuleConditionDialog.Designer.cs
- MenuItemAutomationPeer.cs
- EntityAdapter.cs
- InternalPolicyElement.cs
- DataContract.cs
- DSASignatureDeformatter.cs
- TraceSection.cs
- Trigger.cs
- SqlInternalConnectionSmi.cs
- MulticastIPAddressInformationCollection.cs
- SafeBitVector32.cs
- ColumnResizeUndoUnit.cs
- ToolStripItemEventArgs.cs
- HiddenField.cs
- WeakReference.cs
- Trace.cs
- Region.cs
- DataPointer.cs
- GenericRootAutomationPeer.cs