BASS.NET API for the Un4seen BASS Audio Library

BroadCastAutomaticMode Property

BASS.NET API for the Un4seen BASS Audio Library
Gets if the automatic mode was used (, if AutoConnect was called, else meaning Connect was used instead).

Namespace:  Un4seen.Bass.Misc
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public bool AutomaticMode { get; }

Property Value

Type: Boolean
Remarks

When the automatic mode is used, the following is handled directly by this class and does not need to be handled manually:

Setup of an internal encoder callback procedure and sending of the encoded data to the Server (either internally or via SendData(IntPtr, Int32)). So the only task you need to handle is title updates manually when in automatic mode.

Please note, that some methods should NOT be used, if in automatic mode: Connect, StartEncoder(ENCODEPROC, IntPtr, Boolean), StopEncoder and SendData(IntPtr, Int32)!

See Also

Reference