File tree 5 files changed +5
-5
lines changed
examples/SIPScenarios/BlindTransferScenario
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ static void Main()
56
56
EnableTraceLogs ( _sipTransport ) ;
57
57
58
58
var userAgent = new SIPUserAgent ( _sipTransport , null ) ;
59
- userAgent . ServerCallCancelled += ( uas ) => Log . LogDebug ( "Incoming call cancelled by remote party." ) ;
59
+ userAgent . ServerCallCancelled += ( uas , cancelReq ) => Log . LogDebug ( "Incoming call cancelled by remote party." ) ;
60
60
userAgent . OnCallHungup += ( dialog ) => Log . LogDebug ( "Call hungup by remote party." ) ;
61
61
userAgent . OnIncomingCall += async ( ua , req ) =>
62
62
{
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >netcoreapp3.1 </TargetFramework >
5
+ <TargetFramework >net8.0 </TargetFramework >
6
6
</PropertyGroup >
7
7
8
8
<ItemGroup >
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ static void Main()
56
56
EnableTraceLogs ( _sipTransport ) ;
57
57
58
58
var userAgent = new SIPUserAgent ( _sipTransport , null ) ;
59
- userAgent . ServerCallCancelled += ( uas ) => Log . LogDebug ( "Incoming call cancelled by remote party." ) ;
59
+ userAgent . ServerCallCancelled += ( uas , cancelReq ) => Log . LogDebug ( "Incoming call cancelled by remote party." ) ;
60
60
userAgent . OnCallHungup += ( dialog ) => Log . LogDebug ( "Call hungup by remote party." ) ;
61
61
userAgent . OnIncomingCall += async ( ua , req ) =>
62
62
{
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >netcoreapp3.1 </TargetFramework >
5
+ <TargetFramework >net8.0 </TargetFramework >
6
6
</PropertyGroup >
7
7
8
8
<ItemGroup >
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >netcoreapp3.1 </TargetFramework >
5
+ <TargetFramework >net8.0 </TargetFramework >
6
6
</PropertyGroup >
7
7
8
8
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
You can’t perform that action at this time.
0 commit comments