System.IO.FileStream.AsyncState.Update C# (CSharp) Méthode

Update() private méthode

Sets the active buffer, offset, and count.
private Update ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
Résultat void
            internal void Update(byte[] buffer, int offset, int count)
            {
                _buffer = buffer;
                _offset = offset;
                _count = count;
            }
        }
FileStream.AsyncState