EpAssignedNode_GetName property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtEpAssignedNode> ep_node, Pointer<Pointer<Char>> out)>> EpAssignedNode_GetName
getter/setter pair

\brief Get the name of the node assigned to an execution provider.

\paramin ep_node The OrtEpAssignedNode instance. \paramout out Output parameter set to the node's name as a UTF-8 null-terminated string. Owned by the OrtEpAssignedNode instance (do not free).

\snippet{doc} snippets.dox OrtStatus Return Value

\since Version 1.24.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    OrtStatusPtr Function(
      ffi.Pointer<OrtEpAssignedNode> ep_node,
      ffi.Pointer<ffi.Pointer<ffi.Char>> out,
    )
  >
>
EpAssignedNode_GetName;