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

WriteByte() 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 WriteByte ( byte value ) : void
value byte
Résultat void
        public override void WriteByte(byte value)
        {
            base.WriteByte(value);
            launchEvent();
        }