Enable nullable: ...Automation.Remoting.Client.IWSManNativeApiFacade (#14186)

This commit is contained in:
Staffan Gustafsson 2020-12-11 07:09:35 +01:00 committed by GitHub
parent 25cfd2be98
commit 2784add414
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3015,6 +3015,7 @@ namespace System.Management.Automation.Remoting.Client
/// unit testing.
/// Note: It is implemented as a class to avoid exposing it outside the module.
/// </summary>
#nullable enable
internal interface IWSManNativeApiFacade
{
// TODO: Expand this to cover the rest of the API once I prove that it works!
@ -3033,7 +3034,7 @@ namespace System.Management.Automation.Remoting.Client
int WSManPluginReceiveResult(
IntPtr requestDetails,
int flags,
string stream,
string? stream,
IntPtr streamResult,
string commandState,
int exitCode);
@ -3048,6 +3049,7 @@ namespace System.Management.Automation.Remoting.Client
IntPtr shutdownCallback,
IntPtr shutdownContext);
}
#nullable restore
/// <summary>
/// Concrete implementation of the PInvoke facade for use in the production code.