Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ResourceFetchOptions.cs
1using System;
2
4{
5 public sealed class ResourceFetchOptions
6 {
7 public string ParentId { get; init; } = string.Empty;
8 public bool Permanent { get; init; } = false;
12 public TimeSpan? Timeout { get; init; }
16 public int? RetryAttempts { get; init; }
17 }
18}
int? RetryAttempts
Optional per-call retry attempts override. If null, defaults are used.
TimeSpan? Timeout
Optional per-call timeout override. If null, defaults are used.