IOperationInvoker.AllocateInputs 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.
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
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.