System.IO.Stream.SyncStream.Read C# (CSharp) Méthode

Read() public méthode

public Read ( [ bytes, int offset, int count ) : int
bytes [
offset int
count int
Résultat int
            public override int Read([In, Out]byte[] bytes, int offset, int count)
            {
                lock(_stream)
                    return _stream.Read(bytes, offset, count);
            }