OpAttr_GetName property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtOpAttr> attribute, Pointer<Pointer<Char>> name)>> OpAttr_GetName
getter/setter pair

\brief Get the attribute name from an OrtOpAttr.

\paramin attribute The OrtOpAttr instance. \paramout name Output parameter set to the attribute's name. The name is a null-terminated string.

\snippet{doc} snippets.dox OrtStatus Return Value

\since Version 1.23.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    OrtStatusPtr Function(
      ffi.Pointer<OrtOpAttr> attribute,
      ffi.Pointer<ffi.Pointer<ffi.Char>> name,
    )
  >
>
OpAttr_GetName;