Skip to content

Commit

Permalink
Updated README to prefer statusAsync instead of blocking status
Browse files Browse the repository at this point in the history
  • Loading branch information
sacOO7 committed Oct 13, 2023
1 parent c710b30 commit 6355ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ var presenceNextPage = await presenceHistory.NextAsync();
Getting the current status of a channel, including details of the current number of `Publishers`, `Subscribers` and `PresenceMembers` etc is simple

```csharp
ChannelDetails details = channel.Status();
ChannelDetails details = await channel.StatusAsync();
ChannelMetrics metrics = details.Status.Occupancy.Metrics;
// Do something with 'metrics.Publishers' etc
```
Expand Down

0 comments on commit 6355ed5

Please sign in to comment.