System
[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]
1.0.3300.0
1.0.5000.0
2.0.0.0
4.0.0.0
Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.
System.CodeDom.CodeExpression
System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)
System.Runtime.InteropServices.ComVisible(true)
represents code that creates a delegate. is often used with or to represent an event handler to attach or remove from an event.
The property specifies the type of delegate to create. The property indicates the object that contains the event-handler method. The property indicates the name of the event-handler method whose method signature matches the method signature of the delegate.
In C#, a delegate creation expression is typically of the following form: new EventHandler(this.HandleEventMethod). In Visual Basic, a delegate creation expression is typically of the following form: AddressOf Me.HandleEventMethod.
Represents an expression that creates a delegate.
Constructor
1.0.5000.0
2.0.0.0
4.0.0.0
To be added
Initializes a new instance of the class.
Constructor
1.0.5000.0
2.0.0.0
4.0.0.0
To be added
Initializes a new instance of the class.
A that indicates the data type of the delegate.
A that indicates the object containing the event-handler method.
The name of the event-handler method.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.CodeDom.CodeTypeReference
To be added: an object of type 'CodeTypeReference'
To be added
Gets or sets the data type of the delegate.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added: an object of type 'string'
To be added
Gets or sets the name of the event handler method.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.CodeDom.CodeExpression
To be added: an object of type 'CodeExpression'
To be added
Gets or sets the object that contains the event-handler method.