Batch writing in C# for influxDb3

hello,
is there any documentation.test or example available on batch writing for influxDB3 in c#?
I managed testing batch wiring in python in the past by configuring the “WriteOptions”.

# === Configure InfluxDB client with batching ===
write_options = WriteOptions(
    batch_size=20,
    flush_interval=2000,
    jitter_interval=500,
    retry_interval=5000,
    max_retries=5,
    max_retry_delay=30000
)

wco = write_client_options(write_options=write_options)

client = InfluxDBClient3(
    host=INFLUXDB_HOST,
    token=INFLUXDB_TOKEN,
    org=INFLUXDB_ORG,
    database=INFLUXDB_DATABASE,
    write_client_options=wco
)

I fail to find documentation how to do this in c# and the class WriteOption seems not to have the same purpose.

has someone any example or good pointer here?
thanks a lot in advance

@bednar can you please shed some insight here. Thanks!