ReadBytes() 개인적인 메소드

private ReadBytes ( Stream stream, int len, bool &eos ) : byte[]
stream Stream
len int
eos bool
리턴 byte[]
예제 #1
0
            public bool ReadBody(Stream stream)
            {
                bool eos;

                this.Body = owner.ReadBytes(stream, this.DataSize, out eos);
                return(!eos);
            }