Skip to content

Commit

Permalink
initial commit (#2818)
Browse files Browse the repository at this point in the history
Co-authored-by: Cijo Thomas <[email protected]>
  • Loading branch information
Yun-Ting and cijothomas authored Jan 27, 2022
1 parent 247c033 commit 0ecb317
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public IReadOnlyCollection<string> HttpListenerPrefixes
get => this.httpListenerPrefixes;
set
{
_ = value ?? throw new ArgumentNullException(nameof(this.httpListenerPrefixes));
Guard.ThrowIfNull(value, nameof(this.httpListenerPrefixes));

foreach (string inputUri in value)
{
Expand Down

0 comments on commit 0ecb317

Please sign in to comment.