CodeDelegateCreateExpression Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the CodeDelegateCreateExpression class.
Overloads
CodeDelegateCreateExpression() |
Initializes a new instance of the CodeDelegateCreateExpression class. |
CodeDelegateCreateExpression(CodeTypeReference, CodeExpression, String) |
Initializes a new instance of the CodeDelegateCreateExpression class. |
CodeDelegateCreateExpression()
Initializes a new instance of the CodeDelegateCreateExpression class.
public:
CodeDelegateCreateExpression();
public CodeDelegateCreateExpression ();
Public Sub New ()
Applies to
CodeDelegateCreateExpression(CodeTypeReference, CodeExpression, String)
Initializes a new instance of the CodeDelegateCreateExpression class.
public:
CodeDelegateCreateExpression(System::CodeDom::CodeTypeReference ^ delegateType, System::CodeDom::CodeExpression ^ targetObject, System::String ^ methodName);
public CodeDelegateCreateExpression (System.CodeDom.CodeTypeReference delegateType, System.CodeDom.CodeExpression targetObject, string methodName);
new System.CodeDom.CodeDelegateCreateExpression : System.CodeDom.CodeTypeReference * System.CodeDom.CodeExpression * string -> System.CodeDom.CodeDelegateCreateExpression
Public Sub New (delegateType As CodeTypeReference, targetObject As CodeExpression, methodName As String)
Parameters
- delegateType
- CodeTypeReference
A CodeTypeReference that indicates the data type of the delegate.
- targetObject
- CodeExpression
A CodeExpression that indicates the object containing the event-handler method.
- methodName
- String
The name of the event-handler method.
See also
Applies to
.NET