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