@@ -60,13 +60,13 @@ To get started with the Analytics-CSharp library:
6060| `writeKey `* required * | This is your Segment write key .|
6161| `flushAt `| The default is set to `20`. <br >The count of events at which Segment flushes events .|
6262| `flushInterval `| The default is set to `30` (seconds ). <br >The interval in seconds at which Segment flushes events .|
63- | `defaultSettings `| Default set to `{}`.< br > The settings object used as fallback in case of network failure .|
64- | `autoAddSegmentDestination `| Default set to `true `.< br > This automatically adds the Segment Destination plugin .You can set this to `false `if you want to manually add the Segment Destination plugin .|
65- | `apiHost `| Default set to `api .segment .io / v1 `.< br > This sets a default API Host to which Segment sends events .|
66- | `cdnHost `| Default set to `cdn - settings .segment .com / v1 `.< br > This set a default cdnHost to which Segment fetches settings .|
67- | `analyticsErrorHandler `| Default set to `null `.< br > This set an error handler to handle errors happened in analytics |
68- | `storageProvider `| Default set to `DefaultStorageProvider `.< br > This set how you want your data to be stored .< br > `DefaultStorageProvider `is used by default which stores data to local storage . `InMemoryStorageProvider `is also provided in the library .< br > You can also write your own storage solution by implementing `IStorageProvider `and `IStorage `|
69- | `httpClientProvider `| Default set to `DefaultHTTPClientProvider `.< br > This set a http client provider for analytics use to do network activities. The default provider uses System.Net.Http for network activities. |
63+ | `defaultSettings `| The default is set to `{}`. <br >The settings object used as fallback in case of network failure .|
64+ | `autoAddSegmentDestination `| The default is set to `true `. <br >This automatically adds the Segment Destination plugin .You can set this to `false `if you want to manually add the Segment Destination plugin .|
65+ | `apiHost `| The default is set to `api .segment .io /v1 `. <br >This sets a default API Host to which Segment sends events .|
66+ | `cdnHost `| The default is set to `cdn -settings .segment .com /v1 `. <br >This sets a default cdnHost to which Segment fetches settings .|
67+ | `analyticsErrorHandler `| The default is set to `null `. <br >This sets an error handler to handle errors happened in analytics . |
68+ | `storageProvider `| The default is set to `DefaultStorageProvider `. <br >This sets how you want your data to be stored . `DefaultStorageProvider `is used by default which stores data to local storage . `InMemoryStorageProvider `is also provided in the library .You can also write your own storage solution by implementing `IStorageProvider `and `IStorage `. |
69+ | `httpClientProvider `| The default is set to `DefaultHTTPClientProvider `. <br >This sets a http client provider for analytics use to do network activities .The default provider uses System .Net .Http for network activities .|
7070| `flushPolicies `| Default set to `null `.< br > This set custom flush policies to tell analytics when and how to flush .By default ,it converts `flushAt `and `flushInterval `to `CountFlushPolicy `and `FrequencyFlushPolicy `.If a value is given ,it overwrites `flushAt `and `flushInterval `.|
7171
7272## Tracking Methods