|   | WaveFileByteRate Property | 
        
        
            Gets or sets the byte rate used for buffer estimation.
            
        
        Namespace: GSF.MediaAssembly: GSF.Media (in GSF.Media.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic int ByteRate { get; set; }Public Property ByteRate As Integer
	Get
	Set
public:
property int ByteRate {
	int get ();
	void set (int value);
}member ByteRate : int with get, set
function get_ByteRate();
function set_ByteRate(value);
Property Value
Int32 Remarks
Remarks
            This property is not usually changed.  It will be automatically calculated for new wave files.
            
            This is typically just the arithmetic result of:
            SampleRate * Channels * BitsPerSample / 8.
            However, this value can be changed as needed to accommodate better buffer estimations during
            data read cycle.
            
 See Also
See Also