Implement FlushInputBuffer

This commit is contained in:
Andrew Schwartzmeyer 2016-06-29 14:09:10 -07:00
parent 80486044d8
commit 290cc2c2de

View file

@ -1699,11 +1699,14 @@ namespace Microsoft.PowerShell
}
/// <summary>
/// This API resets the input buffer. In this example this
/// functionality is not needed so the method returns nothing.
/// This API resets the input buffer.
/// </summary>
public override void FlushInputBuffer()
{
if (!Console.IsInputRedirected)
{
Console.OpenStandardInput().Flush();
}
}
/// <summary>