Mono.WebServer.XSPWorker.Read C# (CSharp) Méthode

Read() public méthode

public Read ( byte buffer, int position, int size ) : int
buffer byte
position int
size int
Résultat int
        public override int Read(byte[] buffer, int position, int size)
        {
            int n = stream.Read (buffer, position, size);
            return (n >= 0) ? n : -1;
        }