File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Middleware/HttpOverrides/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ namespace Microsoft.AspNetCore.HttpOverrides;
1313public class IPNetwork
1414{
1515 private readonly System . Net . IPNetwork _network ;
16-
16+
1717 /// <summary>
1818 /// Create a new <see cref="IPNetwork"/> with the specified <see cref="IPAddress"/> and prefix length.
1919 /// </summary>
@@ -47,7 +47,7 @@ public IPNetwork(IPAddress prefix, int prefixLength)
4747 /// <inheritdoc cref="System.Net.IPNetwork.Parse(ReadOnlySpan{char})"/>
4848 public static IPNetwork Parse ( ReadOnlySpan < char > networkSpan ) => System . Net . IPNetwork . Parse ( networkSpan ) ;
4949
50- /// <inheritdoc cref="System.Net.IPNetwork.TryParse(ReadOnlySpan{char}, out IPNetwork?)"/>
50+ /// <inheritdoc cref="System.Net.IPNetwork.TryParse(ReadOnlySpan{char}, out System.Net. IPNetwork?)"/>
5151 public static bool TryParse ( ReadOnlySpan < char > networkSpan , [ NotNullWhen ( true ) ] out IPNetwork ? network )
5252 {
5353 if ( System . Net . IPNetwork . TryParse ( networkSpan , out var ipNetwork ) )
You can’t perform that action at this time.
0 commit comments