GetName property

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

\brief Get the name of the execution provider that the factory creates.

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

\paramin this_ptr The OrtEpFactory instance. \return The name of the execution provider the factory creates.

\since Version 1.22.

Implementation

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