jacqueskang / IpcServiceFramework

.NET Core Inter-process communication framework
MIT License
358 stars 77 forks source link

When CancellationTokenSource is passed, the server side is different from the client side. #175

Open WXWYK opened 2 years ago

WXWYK commented 2 years ago

Describe the bug Task DoTask(CancellationTokenSource cancellationToken); When the client calls DoTask(cancellationToken),cancellationToken has been cancelled, But the server receives the CancellationToken is not cancelled.

Expected behavior the server receives the CancellationToken is cancelled.

Screenshots image

image