Enum SoundPlayFlags
Defines flags for the sound play methods.
[Flags]
public enum SoundPlayFlags : uint
Fields
Asynchronous = 1
Sound is played asynchronously, 'Play' method returns immediately.
AsynchronousLoop = 3
Sound is played asynchronously and loops until another sound is played, 'Stop' is called or the program terminates.
Synchronous = 0
Play will block and wait until the sound is replayed.
Remarks
This enumeration supports a bitwise combination of its member values.