OperationStatus
This enum defines the various potential status that can be returned from Span-based operations
that support processing of input contained in multiple discontiguous buffers.
namespace System.Buffers
{
public enum OperationStatus
{
Done,
DestinationTooSmall,
NeedMoreData,
InvalidData
}
}