feat: add Dial method with password support and implement ICodecCallControlsMessenger for call control messaging

This commit is contained in:
Neil Dorin 2026-06-25 20:30:48 -06:00
parent 8748157362
commit b945ecb470
7 changed files with 57 additions and 8 deletions

View file

@ -18,4 +18,11 @@ public interface ICodecCallControls : IHasDialer
/// </summary>
/// <param name="meeting">The meeting to dial</param>
void Dial(Meeting meeting);
/// <summary>
/// Dials the specified number with an optional password
/// </summary>
/// <param name="number">The number to dial</param>
/// <param name="password">The optional password for the call</param>
void Dial(string number, string password);
}