System.Configuration.ClientSettingsStore.QuotaEnforcedStream.BeginRead C# (CSharp) 메소드

BeginRead() 공개 메소드

public BeginRead ( byte buffer, int offset, int numBytes, AsyncCallback userCallback, Object stateObject ) : IAsyncResult
buffer byte
offset int
numBytes int
userCallback AsyncCallback
stateObject Object
리턴 IAsyncResult
            public override IAsyncResult BeginRead(byte[] buffer, int offset, int numBytes, 
                                                   AsyncCallback userCallback, Object stateObject) {
                return _originalStream.BeginRead(buffer, offset, numBytes, userCallback, stateObject);
            }