LateBinding.LateSet(Object, Type, String, Object[], String[]) Method
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.
Sets a late-bound value of a member of an object, using the specified parameters.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static void LateSet(System::Object ^ o, Type ^ objType, System::String ^ name, cli::array <System::Object ^> ^ args, cli::array <System::String ^> ^ paramnames);
public static void LateSet (object? o, Type? objType, string name, object?[]? args, string?[]? paramnames);
public static void LateSet (object o, Type objType, string name, object[] args, string[] paramnames);
static member LateSet : obj * Type * string * obj[] * string[] -> unit
Public Shared Sub LateSet (o As Object, objType As Type, name As String, args As Object(), paramnames As String())
Public Sub LateSet (o As Object, objType As Type, name As String, args As Object(), paramnames As String())
Parameters
- o
- Object
The object to set the member value for.
- objType
- Type
The type of the object.
- name
- String
The member name to set.
- args
- Object[]
An array of one or parameter values to pass to the member of o
.
- paramnames
- String[]
An array that contains the names of the parameters to which the values in the args
array are passed.
Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.