/// <summary> /// Start recording samples. /// The number of available samples can be obtained through the <see cref="AvailableSamples"/> property. /// The data can be queried with any <see cref="ReadSamples(IntPtr, int)"/> method. /// </summary> public void Start() { Alc.CaptureStart(Handle); IsRunning = true; }
/// <summary> /// Start recording samples. /// The number of available samples can be obtained through the <see cref="AvailableSamples"/> property. /// The data can be queried with any <see cref="ReadSamples(IntPtr, int)"/> method. /// </summary> public void Start() { Alc.CaptureStart(Handle); _isrecording = true; }
public void Start() { Alc.CaptureStart(this.Handle); this._isrecording = true; }