Table of Contents

Interface IBindingHandle

Namespace
RDCore.SDK.Model.Values.Bindings
Assembly
RDCore.SDK.dll

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

BindingCapabilities

Methods

GetValue(IVBExecutionContext)

Gets the value associated to this handle.

IRuntimeValue GetValue(IVBExecutionContext context)

Parameters

context IVBExecutionContext

Returns

IRuntimeValue

Remarks

👉 Verify that the binding supports GetValue.

Exceptions

NotSupportedException

Invoke(IVBExecutionContext, IRuntimeValue[])

Invokes the callable entity associated to this handle.

IRuntimeValue Invoke(IVBExecutionContext context, IRuntimeValue[] args)

Parameters

context IVBExecutionContext
args IRuntimeValue[]

Returns

IRuntimeValue

Remarks

👉 Verify that the binding supports SetValue.

Exceptions

NotSupportedException

SetValue(IVBExecutionContext, IRuntimeValue)

Sets the value associated to this handle.

void SetValue(IVBExecutionContext context, IRuntimeValue value)

Parameters

context IVBExecutionContext
value IRuntimeValue

Remarks

👉 Verify that the binding supports SetValue.

Exceptions

NotSupportedException