System.IO.Pipelines.FlushResult
Result returned by FlushAsync call.
namespace System.IO.Pipelines
{
public struct FlushResult
{
public bool IsCanceled { get; }
public bool IsCompleted { get; }
public FlushResult(bool isCanceled, bool isCompleted);
}
}