jellyfin/Emby.Dlna/PlayTo
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
..
Device.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
DeviceInfo.cs Enable nullable reference types for Emby.Dlna 2021-05-07 14:43:50 +02:00
DlnaHttpClient.cs Fix regression in DlnaHttpClient 2022-08-22 19:01:19 +02:00
MediaChangedEventArgs.cs Enable nullable in more files 2021-07-26 23:02:32 +02:00
PlayToController.cs Merge pull request #7947 from nyanmisaka/video-range-condition 2022-06-29 01:26:14 -04:00
PlayToManager.cs Remove unused dependencies 2021-11-16 12:24:17 +01:00
PlaybackProgressEventArgs.cs Enable nullable in more files 2021-07-26 23:02:32 +02:00
PlaybackStartEventArgs.cs Enable nullable in more files 2021-07-26 23:02:32 +02:00
PlaybackStoppedEventArgs.cs Enable nullable in more files 2021-07-26 23:02:32 +02:00
PlaylistItem.cs Enable nullable reference types for Emby.Dlna 2021-05-07 14:43:50 +02:00
PlaylistItemFactory.cs Enable nullable reference types for Emby.Dlna 2021-05-07 14:43:50 +02:00
TransportCommands.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
TransportState.cs Implement TransportState according to spec (#7426) 2022-03-08 16:12:03 +01:00
UpnpContainer.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
uBaseObject.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
uPnpNamespaces.cs Fix all warnings in Emby.Dlna 2020-08-20 21:04:57 +02:00