using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NSspi.Buffers { public enum BufferType : int { Empty = 0x00, Data = 0x01, Token = 0x02, Parameters = 0x03, Missing = 0x04, Extra = 0x05, Trailer = 0x06, Header = 0x07, Padding = 0x09, Stream = 0x0A, ChannelBindings = 0x0E, TargetHost = 0x10, ReadOnlyFlag = unchecked( (int)0x80000000 ), ReadOnlyWithChecksum = 0x10000000 } }