More work on nullable references

This commit is contained in:
Nikolaj Geisle
2022-02-22 13:35:32 +01:00
parent 315e8d6fe6
commit a8cf6ee127
189 changed files with 1271 additions and 983 deletions

View File

@@ -1,3 +1,5 @@
using System.Diagnostics.CodeAnalysis;
namespace Umbraco.Cms.Core
{
/// <remarks>
@@ -15,6 +17,6 @@ namespace Umbraco.Cms.Core
/// </remarks>
public interface IPublishedContentQueryAccessor
{
bool TryGetValue(out IPublishedContentQuery publishedContentQuery);
bool TryGetValue([MaybeNullWhen(false)]out IPublishedContentQuery publishedContentQuery);
}
}