|   | WaveFileLoad(Stream, Boolean) Method | 
        
        
            Creates a new in-memory wave loaded from an existing wave audio stream.
            
        
        Namespace: GSF.MediaAssembly: GSF.Media (in GSF.Media.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic static WaveFile Load(
	Stream source,
	bool loadData = true
)
Public Shared Function Load ( 
	source As Stream,
	Optional loadData As Boolean = true
) As WaveFile
public:
static WaveFile^ Load(
	Stream^ source, 
	bool loadData = true
)
static member Load : 
        source : Stream * 
        ?loadData : bool 
(* Defaults:
        let _loadData = defaultArg loadData true
*)
-> WaveFile GSF.Media.WaveFile.Load = function(source, loadData);
Parameters
- source  Stream
- Stream of WAV formatted audio data to load.
- loadData  Boolean  (Optional)
- Determines if wave data should be loaded into memory.
Return Value
WaveFileIn-memory representation of wave file.
 See Also
See Also