IOperationInvoker.AllocateInputs Method

Definition

Returns an Array of parameter objects.

public:
 cli::array <System::Object ^> ^ AllocateInputs();
public object[] AllocateInputs ();
abstract member AllocateInputs : unit -> obj[]
Public Function AllocateInputs () As Object()

Returns

Object[]

The parameters that are to be used as arguments to the operation.

Remarks

Implement this to return an array of parameters for the operation. This array is filled by the formatter and passed back to the invoker when Invoke is called.

Applies to

Thread Safety

An implementation of this method must allocate the input array on every call. Returning the same array for multiple calls can result in unpredictable behavior.