Interface IBindingHandle
A handle to a binding to a runtime entity.
public interface IBindingHandle
Properties
BindingCapabilities
Indicates the valid members of this binding.
BindingCapabilities BindingCapabilities { get; }
Property Value
Methods
GetValue(IVBExecutionContext)
Gets the value associated to this handle.
IRuntimeValue GetValue(IVBExecutionContext context)
Parameters
contextIVBExecutionContext
Returns
Remarks
👉 Verify that the binding supports GetValue.
Exceptions
Invoke(IVBExecutionContext, IRuntimeValue[])
Invokes the callable entity associated to this handle.
IRuntimeValue Invoke(IVBExecutionContext context, IRuntimeValue[] args)
Parameters
contextIVBExecutionContextargsIRuntimeValue[]
Returns
Remarks
👉 Verify that the binding supports SetValue.
Exceptions
SetValue(IVBExecutionContext, IRuntimeValue)
Sets the value associated to this handle.
void SetValue(IVBExecutionContext context, IRuntimeValue value)
Parameters
contextIVBExecutionContextvalueIRuntimeValue
Remarks
👉 Verify that the binding supports SetValue.