C# Class 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.
Inheritance: System.EventArgs
Afficher le fichier Open project: RHY3756547/FreeSO Class Usage Examples

Méthodes publiques

Свойство Type Description
NewSoundByte byte[]

Méthodes publiques

Méthode Description
BufferNotificationEventArgs ( int numBytesRequired ) : System

Method Details

BufferNotificationEventArgs() public méthode

public BufferNotificationEventArgs ( int numBytesRequired ) : System
numBytesRequired int
Résultat System

Property Details

NewSoundByte public_oe property

Set this field to the new bytes provided for the sound.
public byte[] NewSoundByte
Résultat byte[]