WaveRecorderSave Method
Stops recording and saves the recorded audio to disk.
Namespace: DevCase.Core.Media.SoundAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public virtual void Save(
string filepath,
bool overWrite = false
)
Public Overridable Sub Save (
filepath As String,
Optional overWrite As Boolean = false
)
Dim instance As WaveRecorder
Dim filepath As String
Dim overWrite As Boolean
instance.Save(filepath, overWrite)
public:
virtual void Save(
String^ filepath,
bool overWrite = false
)
abstract Save :
filepath : string *
?overWrite : bool
(* Defaults:
let _overWrite = defaultArg overWrite false
*)
-> unit
override Save :
filepath : string *
?overWrite : bool
(* Defaults:
let _overWrite = defaultArg overWrite false
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- filepath String
-
The filepath.
- overWrite Boolean (Optional)
-
If , overwrites any existing file.
Exception
|
Cannot save because any audio is recorded.
or
The destination file already exists.
|