We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95ce064 commit 817e6b0Copy full SHA for 817e6b0
src/System.Management.Automation/engine/CommandCompletion/ExtensibleCompletion.cs
@@ -58,6 +58,7 @@ public ArgumentCompleterAttribute(ScriptBlock scriptBlock)
58
/// <summary>
59
/// A type specified by the <see cref="ArgumentCompleterAttribute"/> must implement this interface.
60
/// </summary>
61
+#nullable enable
62
public interface IArgumentCompleter
63
{
64
@@ -82,6 +83,7 @@ IEnumerable<CompletionResult> CompleteArgument(
82
83
CommandAst commandAst,
84
IDictionary fakeBoundParameters);
85
}
86
+#nullable restore
87
88
89
0 commit comments