aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/ContentDirectory/ContentDirectoryService.cs
AgeCommit message (Collapse)Author
2023-11-15Remove Emby.DlnaPatrick Barron
2022-12-05Replace != null with is not nullBond_009
2022-10-06Use ArgumentNullException.ThrowIfNull helper methodBond_009
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); ```
2021-07-26Enable nullable in more filesBond_009
2021-05-07Enable nullable reference types for Emby.DlnaBond_009
2020-09-13ContentDirectoryJim Cartlidge
2020-08-31migrate to IHttpClientFactory in Emby.Dlnacrobibero
2020-08-20Fix all warnings in Emby.DlnaBond_009