GAudio.StreamToWavModule.EndWriting C# (CSharp) Méthode

EndWriting() public méthode

Stops writing and finalizes the file's header. As this occurs on a seperate thread, you should not assume that the file is ready to be opened immediately.
public EndWriting ( ) : void
Résultat void
        public void EndWriting()
        {
            if( !_writing )
                return;

            _writing = false;
            _stream.RemoveAudioThreadStreamClient( this );
            _writer.StopAndFinalize();
        }