Skip to content

Commit

Permalink
Move the PollingMode option to public scope
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Mar 4, 2022
1 parent 04514fe commit 04a76a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ConfigCatClient/Configuration/ConfigCatClientOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
/// </summary>
public class ConfigCatClientOptions : ConfigurationBase
{
internal PollingMode PollingMode { get; set; } = PollingModes.AutoPoll();
/// <summary>
/// The polling mode.
/// </summary>
public PollingMode PollingMode { get; set; } = PollingModes.AutoPoll();

internal override void Validate()
{
Expand Down

0 comments on commit 04a76a7

Please sign in to comment.