jellyfin/Emby.Dlna
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
..
Common Fixes spelling. 2020-11-18 13:23:45 +00:00
Configuration Merge pull request #7868 from cvium/disable_dlna 2022-06-10 23:43:18 -04:00
ConnectionManager Remove useless code 2021-04-01 19:16:00 +02:00
ContentDirectory Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
Didl Fix various typos 2022-08-15 06:48:34 -04:00
Eventing Remove all instances of en-US culture 2021-09-26 09:11:25 -06:00
Images Optimize images 2020-09-21 17:01:50 -04:00
Main Merge pull request #7954 from cvium/fix_7953_dlna_url 2022-06-29 01:26:15 -04:00
MediaReceiverRegistrar Remove unused using directives 2021-04-17 11:37:55 +01:00
PlayTo Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
Profiles More cleanup 2021-12-27 14:20:05 +00:00
Properties Add tests for GetUuid 2020-12-01 15:12:55 +01:00
Server More cleanup 2021-12-27 14:20:05 +00:00
Service Merge pull request #7604 from Jellifi007/fixes-diactritics 2022-05-20 18:30:56 -04:00
Ssdp Enable nullable reference types for Emby.Dlna 2021-05-07 14:43:50 +02:00
ConfigurationExtension.cs Enable nullable reference types for Emby.Dlna 2021-05-07 14:43:50 +02:00
ControlRequest.cs Enable nullable reference types for Emby.Dlna 2021-05-07 14:43:50 +02:00
ControlResponse.cs Enable nullable in more files 2021-07-26 23:02:32 +02:00
DlnaConfigurationFactory.cs Enable nullable reference types for Emby.Dlna 2021-05-07 14:43:50 +02:00
DlnaManager.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
Emby.Dlna.csproj Bump StyleCop.Analyzers from 1.2.0-beta.406 to 1.2.0-beta.435 (#7726) 2022-05-09 15:24:09 +02:00
EventSubscriptionResponse.cs Enable nullable in more files 2021-07-26 23:02:32 +02:00
IConnectionManager.cs Rename IEventManager to IDlnaEventManager 2020-08-13 15:47:31 -04:00
IContentDirectory.cs Rename IEventManager to IDlnaEventManager 2020-08-13 15:47:31 -04:00
IDlnaEventManager.cs Fix various typos 2022-08-15 06:48:34 -04:00
IMediaReceiverRegistrar.cs Rename IEventManager to IDlnaEventManager 2020-08-13 15:47:31 -04:00
IUpnpService.cs Fix some warnings 2020-02-23 12:11:43 +01:00