@@ -287,6 +287,32 @@ public IPEndPoint(System.Net.IPAddress address, int port) { }
287
287
public static bool TryParse ( System . ReadOnlySpan < char > s , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( true ) ] out System . Net . IPEndPoint ? result ) { throw null ; }
288
288
public static bool TryParse ( string s , [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( true ) ] out System . Net . IPEndPoint ? result ) { throw null ; }
289
289
}
290
+ public readonly partial struct IPNetwork : System . IEquatable < System . Net . IPNetwork > , System . IFormattable , System . IParsable < System . Net . IPNetwork > , System . ISpanFormattable , System . ISpanParsable < System . Net . IPNetwork >
291
+ {
292
+ private readonly object _dummy ;
293
+ private readonly int _dummyPrimitive ;
294
+ public IPNetwork ( System . Net . IPAddress baseAddress , int prefixLength ) { throw null ; }
295
+ public System . Net . IPAddress BaseAddress { get { throw null ; } }
296
+ public int PrefixLength { get { throw null ; } }
297
+ public bool Contains ( System . Net . IPAddress address ) { throw null ; }
298
+ public bool Equals ( System . Net . IPNetwork other ) { throw null ; }
299
+ public override bool Equals ( [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( true ) ] object ? obj ) { throw null ; }
300
+ public override int GetHashCode ( ) { throw null ; }
301
+ public static bool operator == ( System . Net . IPNetwork left , System . Net . IPNetwork right ) { throw null ; }
302
+ public static bool operator != ( System . Net . IPNetwork left , System . Net . IPNetwork right ) { throw null ; }
303
+ public static System . Net . IPNetwork Parse ( System . ReadOnlySpan < char > s ) { throw null ; }
304
+ public static System . Net . IPNetwork Parse ( string s ) { throw null ; }
305
+ string System . IFormattable . ToString ( string ? format , System . IFormatProvider ? provider ) { throw null ; }
306
+ static System . Net . IPNetwork System . IParsable < System . Net . IPNetwork > . Parse ( [ System . Diagnostics . CodeAnalysis . NotNullAttribute ] string s , System . IFormatProvider ? provider ) { throw null ; }
307
+ static bool System . IParsable < System . Net . IPNetwork > . TryParse ( [ System . Diagnostics . CodeAnalysis . NotNullWhenAttribute ( true ) ] string ? s , System . IFormatProvider ? provider , out System . Net . IPNetwork result ) { throw null ; }
308
+ bool System . ISpanFormattable . TryFormat ( System . Span < char > destination , out int charsWritten , System . ReadOnlySpan < char > format , System . IFormatProvider ? provider ) { throw null ; }
309
+ static System . Net . IPNetwork System . ISpanParsable < System . Net . IPNetwork > . Parse ( System . ReadOnlySpan < char > s , System . IFormatProvider ? provider ) { throw null ; }
310
+ static bool System . ISpanParsable < System . Net . IPNetwork > . TryParse ( System . ReadOnlySpan < char > s , System . IFormatProvider ? provider , out System . Net . IPNetwork result ) { throw null ; }
311
+ public override string ToString ( ) { throw null ; }
312
+ public bool TryFormat ( System . Span < char > destination , out int charsWritten ) { throw null ; }
313
+ public static bool TryParse ( System . ReadOnlySpan < char > s , out System . Net . IPNetwork result ) { throw null ; }
314
+ public static bool TryParse ( string ? s , out System . Net . IPNetwork result ) { throw null ; }
315
+ }
290
316
public partial interface IWebProxy
291
317
{
292
318
System . Net . ICredentials ? Credentials { get ; set ; }
0 commit comments