wpf_player.ObservableStream.Write C# (CSharp) Méthode

Write() public méthode

This method after the call of the base class implementation uses the launchEvent method to raise the right event See MSDN Reference for Memory Stream for Details.
public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
Résultat void
        public override void Write(byte[] buffer, int offset, int count)
        {
            base.Write(buffer, offset, count);
            launchEvent();
        }