wpf_player.ObservableStream.WriteByte C# (CSharp) Method

WriteByte() public method

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