CodeDelegateCreateExpression Constructors

Definition

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()

Source:
CodeDelegateCreateExpression.cs
Source:
CodeDelegateCreateExpression.cs
Source:
CodeDelegateCreateExpression.cs
Source:
CodeDelegateCreateExpression.cs

Initializes a new instance of the CodeDelegateCreateExpression class.

public:
 CodeDelegateCreateExpression();
public CodeDelegateCreateExpression ();
Public Sub New ()

Applies to

CodeDelegateCreateExpression(CodeTypeReference, CodeExpression, String)

Source:
CodeDelegateCreateExpression.cs
Source:
CodeDelegateCreateExpression.cs
Source:
CodeDelegateCreateExpression.cs
Source:
CodeDelegateCreateExpression.cs

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