GetVersion property

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

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

The version string should adhere to the Semantic Versioning 2.0 specification (https://github.com/semver/semver/blob/v2.0.0/semver.md).

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

\paramin this_ptr The OrtEpFactory instance. \return The execution provider version string.

\since Version 1.23.

Implementation

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