Release property

Pointer<NativeFunction<Void Function(Pointer<OrtDataTransferImpl> this_ptr)>> Release
getter/setter pair

\brief Release the OrtDataTransferImpl instance.

This is called by ORT when the OrtDataTransferImpl instance is no longer needed. The implementation should release any resources held by the instance.

\paramin this_ptr Pointer to the OrtDataTransferImpl instance.

\since Version 1.23.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    ffi.Void Function(ffi.Pointer<OrtDataTransferImpl> this_ptr)
  >
>
Release;