File: System\IO\Pipelines\ResultFlags.cs | Web Access |
Project: src\src\libraries\System.IO.Pipelines\src\System.IO.Pipelines.csproj (System.IO.Pipelines) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.IO.Pipelines { [Flags] internal enum ResultFlags : byte { None = 0x0, Canceled = 0x1, Completed = 0x2 } } |