jellyfin/MediaBrowser.Common/Net
Bond_009 a9a5fcde81 Use ArgumentNullException.ThrowIfNull helper method
Did a simple search/replace on the whole repo (except the RSSDP project)
This reduces LOC and should improve performance (methods containing a throw statement don't get inlined)

```
if \((\w+) == null\)
\s+\{
\s+throw new ArgumentNullException\((.*)\);
\s+\}
```

```
ArgumentNullException.ThrowIfNull($1);
```
2022-10-06 20:21:23 +02:00
..
CustomHeaderNames.cs Fix some warnings 2020-02-23 12:11:43 +01:00
INetworkManager.cs Enable nullable reference types for MediaBrowser.Common 2021-05-05 12:57:01 +02:00
IPHost.cs Address comment 2021-08-12 21:38:54 +02:00
IPNetAddress.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
IPObject.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
NamedClient.cs Rework SsdpHttpClient 2022-03-08 23:00:43 +01:00
NetworkExtensions.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00