(Action) Argument. Only intended for use by auto-generated proxies.
One Argument will be created per [in/out]put Parameter for the Action. Input parameters should construct arguments using the (Parameter, Val) constructor. Output parameters should construct arguments using only the parameter and should read the value when the invocation completes.
Esempio n. 1
0
 /// <summary>
 /// Add an output argument to an invocation
 /// </summary>
 /// <param name="aArgument">Output argument being added.  Ownership passes to the invocation</param>
 public void AddOutput(Argument aArgument)
 {
     iOutputArgs.Add(aArgument);
     CpInvocationAddOutput(iHandle, aArgument.Handle());
 }
Esempio n. 2
0
 /// <summary>
 /// Add an output argument to an invocation
 /// </summary>
 /// <param name="aArgument">Output argument being added.  Ownership passes to the invocation</param>
 public void AddOutput(Argument aArgument)
 {
     iOutputArgs.Add(aArgument);
     CpInvocationAddOutput(iHandle, aArgument.Handle());
 }