GetName property

Pointer<NativeFunction<Pointer<Char> Function(Pointer<OrtEp> this_ptr)>> GetName
getter/setter pair

\brief Get the execution provider name.

The returned string should be a null-terminated, UTF-8 encoded string. ORT will copy it.

\paramin this_ptr The OrtEp instance. \return The execution provider name.

\since Version 1.22.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    ffi.Pointer<ffi.Char> Function(ffi.Pointer<OrtEp> this_ptr)
  >
>
GetName;