DISPPARAMS Struct

Definition

Contains the arguments passed to a method or property by IDispatch::Invoke.

public value class DISPPARAMS
public struct DISPPARAMS
type DISPPARAMS = struct
Public Structure DISPPARAMS
Inheritance
DISPPARAMS

Remarks

For additional information about DISPPARAMS, see DISPPARMS structure in the Windows API documentation.

The common language runtime throws an exception when a COM method in native code returns an HRESULT. For more information, see How to: Map HRESULTs and Exceptions.

Fields

cArgs

Represents the count of arguments.

cNamedArgs

Represents the count of named arguments.

rgdispidNamedArgs

Represents the dispatch IDs of named arguments.

rgvarg

Represents a reference to the array of arguments.

Applies to