DispatchWrapper(Object) Constructor

Definition

Initializes a new instance of the DispatchWrapper class with the object being wrapped.

public:
 DispatchWrapper(System::Object ^ obj);
public DispatchWrapper (object obj);
public DispatchWrapper (object? obj);
new System.Runtime.InteropServices.DispatchWrapper : obj -> System.Runtime.InteropServices.DispatchWrapper
Public Sub New (obj As Object)

Parameters

obj
Object

The object to be wrapped and converted to VT_DISPATCH.

Exceptions

obj is not a class or an array.

-or-

obj does not support IDispatch.

The obj parameter was marked with a ComVisibleAttribute attribute that was passed a value of false.

-or-

The obj parameter inherits from a type marked with a ComVisibleAttribute attribute that was passed a value of false.

Applies to