RequestOptions¶
RequestOptions controls timeout, retry, and encryption behavior for SDK request/response helpers.
Source mapping¶
src/Nalix.SDK/Configuration/RequestOptions.cs
What it controls¶
- per-attempt timeout
- retry count
- whether outbound request sending uses encryption
Basic usage¶
Important behavior¶
- retries happen only on timeout
Encrypt = truerequires aTcpSessionBasetransport- total wait time can grow to
TimeoutMs * (RetryCount + 1)