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
파일 보기 프로젝트 열기: RHY3756547/FreeSO 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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[]