@@ -301,6 +301,10 @@ protected CallConnection() { }
301301 public virtual System . Threading . Tasks . Task < Azure . Response < System . Collections . Generic . IReadOnlyList < Azure . Communication . CallAutomation . CallParticipant > > > GetParticipantsAsync ( System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
302302 public virtual Azure . Response HangUp ( bool forEveryone , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
303303 public virtual System . Threading . Tasks . Task < Azure . Response > HangUpAsync ( bool forEveryone , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
304+ public virtual Azure . Response < Azure . Communication . CallAutomation . MoveParticipantsResult > MoveParticipants ( Azure . Communication . CallAutomation . MoveParticipantsOptions options , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
305+ public virtual Azure . Response < Azure . Communication . CallAutomation . MoveParticipantsResult > MoveParticipants ( string fromCall , System . Collections . Generic . IEnumerable < Azure . Communication . CommunicationIdentifier > targetParticipants , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
306+ public virtual System . Threading . Tasks . Task < Azure . Response < Azure . Communication . CallAutomation . MoveParticipantsResult > > MoveParticipantsAsync ( Azure . Communication . CallAutomation . MoveParticipantsOptions options , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
307+ public virtual System . Threading . Tasks . Task < Azure . Response < Azure . Communication . CallAutomation . MoveParticipantsResult > > MoveParticipantsAsync ( string fromCall , System . Collections . Generic . IEnumerable < Azure . Communication . CommunicationIdentifier > targetParticipants , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
304308 public virtual Azure . Response < Azure . Communication . CallAutomation . MuteParticipantResult > MuteParticipant ( Azure . Communication . CallAutomation . MuteParticipantOptions options , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
305309 public virtual Azure . Response < Azure . Communication . CallAutomation . MuteParticipantResult > MuteParticipant ( Azure . Communication . CommunicationIdentifier targetParticipant , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
306310 public virtual System . Threading . Tasks . Task < Azure . Response < Azure . Communication . CallAutomation . MuteParticipantResult > > MuteParticipantAsync ( Azure . Communication . CallAutomation . MuteParticipantOptions options , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
@@ -1306,6 +1310,46 @@ internal MediaStreamingUpdate() { }
13061310 public Azure . Communication . CallAutomation . MediaStreamingStatus ? MediaStreamingStatus { get { throw null ; } }
13071311 public Azure . Communication . CallAutomation . MediaStreamingStatusDetails ? MediaStreamingStatusDetails { get { throw null ; } }
13081312 }
1313+ public partial class MoveParticipantEventResult
1314+ {
1315+ internal MoveParticipantEventResult ( ) { }
1316+ public Azure . Communication . CallAutomation . MoveParticipantFailed FailureResult { get { throw null ; } }
1317+ public string FromCall { get { throw null ; } }
1318+ public bool IsSuccess { get { throw null ; } }
1319+ public Azure . Communication . CallAutomation . MoveParticipantSucceeded SuccessResult { get { throw null ; } }
1320+ public Azure . Communication . CommunicationIdentifier TargetParticipant { get { throw null ; } }
1321+ }
1322+ public partial class MoveParticipantFailed : Azure . Communication . CallAutomation . CallAutomationEventBase
1323+ {
1324+ internal MoveParticipantFailed ( ) { }
1325+ public string FromCall { get { throw null ; } }
1326+ public Azure . Communication . CommunicationIdentifier Participant { get { throw null ; } }
1327+ public static Azure . Communication . CallAutomation . MoveParticipantFailed Deserialize ( string content ) { throw null ; }
1328+ }
1329+ public partial class MoveParticipantsOptions
1330+ {
1331+ public MoveParticipantsOptions ( System . Collections . Generic . IEnumerable < Azure . Communication . CommunicationIdentifier > targetParticipants , string fromCall ) { }
1332+ public string FromCall { get { throw null ; } }
1333+ public System . Uri OperationCallbackUri { get { throw null ; } set { } }
1334+ public string OperationContext { get { throw null ; } set { } }
1335+ public System . Collections . Generic . IEnumerable < Azure . Communication . CommunicationIdentifier > TargetParticipants { get { throw null ; } }
1336+ }
1337+ public partial class MoveParticipantsResult
1338+ {
1339+ internal MoveParticipantsResult ( ) { }
1340+ public string FromCall { get { throw null ; } }
1341+ public string OperationContext { get { throw null ; } }
1342+ public System . Collections . Generic . IReadOnlyList < Azure . Communication . CallAutomation . CallParticipant > TargetParticipants { get { throw null ; } }
1343+ public Azure . Communication . CallAutomation . MoveParticipantEventResult WaitForEventProcessor ( System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
1344+ public System . Threading . Tasks . Task < Azure . Communication . CallAutomation . MoveParticipantEventResult > WaitForEventProcessorAsync ( System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
1345+ }
1346+ public partial class MoveParticipantSucceeded : Azure . Communication . CallAutomation . CallAutomationEventBase
1347+ {
1348+ internal MoveParticipantSucceeded ( ) { }
1349+ public string FromCall { get { throw null ; } }
1350+ public Azure . Communication . CommunicationIdentifier Participant { get { throw null ; } }
1351+ public static Azure . Communication . CallAutomation . MoveParticipantSucceeded Deserialize ( string content ) { throw null ; }
1352+ }
13091353 public partial class MuteParticipantOptions
13101354 {
13111355 public MuteParticipantOptions ( Azure . Communication . CommunicationIdentifier targetParticipant ) { }
0 commit comments