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);
            }