We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6f3c92 commit 88607eeCopy full SHA for 88607ee
Runtime/Attributes/TypeOptionsAttribute.cs
@@ -25,6 +25,11 @@ public class TypeOptionsAttribute : PropertyAttribute
25
/// Defaults to <see langword="true"/> unless explicitly specified.
26
/// </summary>
27
[PublicAPI] public bool ShowNoneElement = true;
28
+
29
+ /// <summary>
30
+ /// Use <see cref="ShowNoneElement"/> instead.
31
+ /// </summary>
32
+ [PublicAPI, Obsolete("Use ShowNoneElement instead.")] public bool ExcludeNone = false;
33
34
/// <summary>Includes additional types in the drop-down list.</summary>
35
[PublicAPI] public Type[] IncludeTypes;
0 commit comments