SetLanguageProjection property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtEnv> ort_env, UnsignedInt projection)>> SetLanguageProjection
getter/setter pair

\brief Set language projection

Set the language projection for collecting telemetry data when Env is created.

The default is ORT_PROJECTION_C, which means it will classify the language not in the list to C also.

\paramin ort_env \paramin projection

\snippet{doc} snippets.dox OrtStatus Return Value

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    OrtStatusPtr Function(
      ffi.Pointer<OrtEnv> ort_env,
      ffi.UnsignedInt projection,
    )
  >
>
SetLanguageProjection;