DISPPARAMS Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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. |