#InheritParentSecurityCompletedEventHandler
##Properties
| Datatype | Property name | Property description | Default Value |
|---|---|---|---|
| MethodInfo | Method | Gets the method represented by the delegate. | null |
| Object | Target | Gets the class instance on which the current delegate invokes the instance method. | null |
##Methods
###BeginInvoke(System.Object,System.ComponentModel.AsyncCompletedEventArgs,System.AsyncCallback,System.Object)
Parameters:
- System.Object sender
- System.ComponentModel.AsyncCompletedEventArgs e
- System.AsyncCallback callback
- System.Object object
###Clone() Creates a shallow copy of the delegate.
Returns:
A shallow copy of the delegate.
###DynamicInvoke(System.Object[]) Dynamically invokes (late-bound) the method represented by the current delegate.
Parameters:
- System.Object[] args - An array of objects that are the arguments to pass to the method represented by the current delegate. -or- null, if the method represented by the current delegate does not require arguments.
Returns:
The object returned by the method represented by the delegate.
###EndInvoke(System.IAsyncResult)
Parameters:
- System.IAsyncResult result
###Equals(System.Object) Determines whether this multicast delegate and the specified object are equal.
Parameters:
- System.Object obj - The object to compare with this instance.
Returns:
true if <paramref name="obj and this instance have the same invocation lists; otherwise, false.
###GetHashCode() Returns the hash code for this instance.
Returns:
A 32-bit signed integer hash code.
###GetInvocationList() Returns the invocation list of this multicast delegate, in invocation order.
Returns:
An array of delegates whose invocation lists collectively match the invocation list of this instance.
###GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) Populates a System.Runtime.Serialization.SerializationInfo object with all the data needed to serialize this instance.
Parameters:
- System.Runtime.Serialization.SerializationInfo info - An object that holds all the data needed to serialize or deserialize this instance.
- System.Runtime.Serialization.StreamingContext context - (Reserved) The location where serialized data is stored and retrieved.
###GetType() Gets the System.Type of the current instance.
Returns:
The System.Type instance that represents the exact runtime type of the current instance.
###Invoke(System.Object,System.ComponentModel.AsyncCompletedEventArgs)
Parameters:
###ToString() Returns a System.String that represents the current System.Object.
Returns:
A System.String that represents the current System.Object.
