File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,11 @@ public class StandardWebhookFactory : IStandardWebhookFactory
2020 /// Initializes a new instance of the <see cref="StandardWebhookFactory"/> class.
2121 /// </summary>
2222 /// <param name="signingKey">Signing key, as byte array.</param>
23- /// <param name="webhookConfigurationOptions">Options to set custom header keys.</param>
23+ /// <param name="webhookConfigurationOptions">Options to set custom header keys. Optional,
24+ /// defaults to Standard Webhooks headers.</param>
2425 public StandardWebhookFactory (
2526 string signingKey ,
26- WebhookConfigurationOptions ? webhookConfigurationOptions )
27+ WebhookConfigurationOptions ? webhookConfigurationOptions = null )
2728 {
2829 _signingKey = signingKey ;
2930 _webhookConfigurationOptions = webhookConfigurationOptions ;
You can’t perform that action at this time.
0 commit comments