-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Beta 2 feedback changes(sdk specific only) (#37876)
* Beta 2 feedback changes(sdk specific only) * make remaining ABR updates * update media event reason codes * address pr comments * update tests --------- Co-authored-by: abhishesingh-msft <abhishesingh@microsoft.com> Co-authored-by: Adam Tazi <adamtazi@microsoft.com>
- Loading branch information
1 parent
c1047da
commit 890a4fe
Showing
79 changed files
with
1,694 additions
and
850 deletions.
There are no files selected for viewing
119 changes: 61 additions & 58 deletions
119
...ure.Communication.CallAutomation/api/Azure.Communication.CallAutomation.netstandard2.0.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 0 additions & 31 deletions
31
...cation.CallAutomation/src/CallAutomationEventProcessor/EventResult/SendDtmfEventResult.cs
This file was deleted.
Oops, something went wrong.
31 changes: 31 additions & 0 deletions
31
...n.CallAutomation/src/CallAutomationEventProcessor/EventResult/SendDtmfTonesEventResult.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Communication.CallAutomation | ||
{ | ||
/// <summary><see cref="SendDtmfTonesEventResult"/> is returned from WaitForEvent of <see cref="SendDtmfTonesResult"/>.</summary> | ||
public class SendDtmfTonesEventResult | ||
{ | ||
/// <summary> | ||
/// Indicates whether the returned event is considered successful or not. | ||
/// </summary> | ||
public bool IsSuccess { get; internal set; } | ||
|
||
/// <summary> | ||
/// <see cref="SendDtmfTonesCompleted"/> event will be returned once the dtmf tones have been sent successfully. | ||
/// </summary> | ||
public SendDtmfTonesCompleted SuccessResult { get; } | ||
|
||
/// <summary> | ||
/// <see cref="SendDtmfTonesFailed"/> event will be returned if send dtmf tones completed unsuccessfully. | ||
/// </summary> | ||
public SendDtmfTonesFailed FailureResult { get; } | ||
|
||
internal SendDtmfTonesEventResult(bool isSuccess, SendDtmfTonesCompleted successResult, SendDtmfTonesFailed failureResult) | ||
{ | ||
IsSuccess = isSuccess; | ||
SuccessResult = successResult; | ||
FailureResult = failureResult; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.