Copyright © 2011-2019 MultiMedia Soft

WASAPI property (RO)

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property WASAPI As WASAPIMan


 

[C#]

public WASAPIMan WASAPI {get;}


 

[C++]

public: __property WASAPIMan* get_WASAPI ();


 

This property is Read-only

 

 

Remarks

The object used to manage audio flow through WASAPI.

 

This property encapsulates the functionality of the WASAPIMan class.

 

When using the API from legacy development environments like Visual Basic 6 or unmanaged Visual C++, where communication is performed through COM interoperability, this object can be accessed through its COM interface exposed by the WASAPIGet method so, if in C# you access the object like this:

 

Visual C#

 

audioSoundEditorApi.WASAPI.RenderDeviceStartShared (...);

 

 

in other languages you will use the following syntax

 

Unmanaged Visual C++

 

audioSoundEditorApi->WASAPIGet()->RenderDeviceStartShared (...);

 

 

Visual Basic 6

 

audioSoundEditorApi.WASAPIGet().RenderDeviceStartShared ...

 

 

Further information about WASAPI can be found inside the How to manage audio playback through WASAPI tutorial.