Skip to content

Commit aa39537

Browse files
authored
Update README.md
1 parent 008a6ed commit aa39537

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,15 +184,15 @@ This creates a new [Model.AppEvent](https://github.com/trakerr-io/trakerr-cshar
184184
trakerrClient.SendEventAsync(infoevent);
185185
```
186186

187-
## About the TrakerrClient Constructor
187+
## About TrakerrClient's properties
188188

189189
The `TrakerrClient` class above can be constructed to take aditional data, rather than using the configured defaults. The constructor signature is:
190190

191191
```csharp
192192
public TrakerrClient(string apiKey = null, string contextAppVersion = null, string contextDeploymentStage = null, string contextEnvLanguage = "C#")
193193
```
194194

195-
The TrakerrClient class however has a lot of exposed properties. The benefit to setting these immediately after after you create the TrakerrClient is that AppEvent will default it's values against the TrakerClient that created it. This way if there is a value that all your AppEvents uses, and the constructor default value currently doesn't suit you; it may be easier to change it in TrakerrClient as it will become the default value for all AppEvents created after. A lot of these are populated by default value by the constructor, but you can populate them with whatever string data you want. The following table provides an in depth look at each of those.
195+
The TrakerrClient class also has a lot of exposed properties. The benefit to setting these immediately after after you create TrakerrClient is that AppEvent will default it's values against the TrakerClient that created it. This way if there is a value that all your AppEvents uses, and the constructor default value currently doesn't suit you; it may be easier to change it in TrakerrClient as it will become the default value for all AppEvents created after. A lot of these are populated by default value by the constructor, but you can populate them with whatever string data you want. The following table provides an in depth look at each of those.
196196

197197
Name | Type | Description | Notes
198198
------------ | ------------- | ------------- | -------------

0 commit comments

Comments
 (0)