C# Класс Mp3Sharp.BufferNotificationEventArgs

Describes a buffer notification event. To properly handle the event, the NewSoundByte field should be set to an array of bytes less than or equal to the NumBytesRequired property. If less than the required number of bytes are provided, the stream will fill the remainder with silence. SoundFinished defaults to false, and should be set to indicate if the bytes contained in NewSoundByte represent the end of the sound.
Наследование: System.EventArgs
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
NewSoundByte byte[]

Открытые методы

Метод Описание
BufferNotificationEventArgs ( int numBytesRequired ) : System

Описание методов

BufferNotificationEventArgs() публичный Метод

public BufferNotificationEventArgs ( int numBytesRequired ) : System
numBytesRequired int
Результат System

Описание свойств

NewSoundByte публичное свойство

Set this field to the new bytes provided for the sound.
public byte[] NewSoundByte
Результат byte[]