AK.F1.Timing.Live.IO.LiveSocketMessageStream.Fill C# (CSharp) Method

Fill() public method

public Fill ( byte buffer, int offset, int count ) : bool
buffer byte
offset int
count int
return bool
        public bool Fill(byte[] buffer, int offset, int count)
        {
            CheckDisposed();
            Guard.CheckBufferArgs(buffer, offset, count);

            try
            {
                return FillCore(buffer, offset, count);
            }
            catch(SocketException exc)
            {
                throw Guard.LiveSocketMessageStream_ReadFailed(exc);
            }
        }