You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/OpenFeature/Api.cs
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -38,13 +38,13 @@ internal Api() { }
38
38
/// Sets the default feature provider. In order to wait for the provider to be set, and initialization to complete,
39
39
/// await the returned task.
40
40
/// </summary>
41
-
/// <remarks>The provider cannot be set to null. Attempting to set the provider to null has no effect. May throw an exception if <paramref name="featureProvider"/> cannot be initialized.</remarks>
42
41
/// <param name="featureProvider">Implementation of <see cref="FeatureProvider"/></param>
@@ -54,15 +54,17 @@ public async Task SetProviderAsync(FeatureProvider featureProvider)
54
54
/// <remarks>The provider cannot be set to null. Attempting to set the provider to null has no effect. May throw an exception if <paramref name="featureProvider"/> cannot be initialized.</remarks>
55
55
/// <param name="domain">An identifier which logically binds clients with providers</param>
56
56
/// <param name="featureProvider">Implementation of <see cref="FeatureProvider"/></param>
57
+
/// <param name="cancellationToken">Propagates notification that the provider initialization should be canceled.</param>
57
58
/// <exception cref="ArgumentNullException">domain cannot be null or empty</exception>
"The provider mutator function MUST invoke the shutdown function on the previously registered provider once it's no longer being used to resolve flag values.")]
0 commit comments