March 2004
Intermediate to advanced
560 pages
26h 47m
English
public abstract class Stream : MarshalByRefObject, IDisposable { // Constructors protected Stream (); // Fields public static readonly Stream Null; // Properties public abstract bool CanRead { get; } public abstract bool CanSeek { get; } public abstract bool CanWrite { get; } public abstract long Length { get; } public abstract long Position { set; get; } // Methods public virtual IAsyncResult BeginRead (byte[] buffer, int offset, int count, AsyncCallback callback, object state); public virtual IAsyncResult BeginWrite (byte[] buffer, int offset, int count, AsyncCallback callback, object state); public virtual void Close (); protected virtual WaitHandle CreateWaitHandle (); public virtual int EndRead (IAsyncResult asyncResult); ...
Read now
Unlock full access