We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 937d221 commit 572bb68Copy full SHA for 572bb68
1 file changed
BmwDeepObd/BmwRpcCoding.cs
@@ -708,6 +708,21 @@ public async Task<bool> VehicleFunctions(PsdzOperationType operationType)
708
}
709
710
711
+ public async Task<bool> CancelOperation()
712
+ {
713
+ try
714
715
+ await _psdzRpcClient.RpcService.CancelOperation().ConfigureAwait(false);
716
+ return true;
717
+ }
718
+ catch (Exception ex)
719
720
+ _ediabasProxyClient?.EdiabasLogFormat(EdiabasNet.EdLogLevel.Ifh, "CancelOperation: Exception={0}",
721
+ EdiabasNet.GetExceptionText(ex, false, false));
722
+ return false;
723
724
725
+
726
public async Task DisposeRpcClient()
727
{
728
try
0 commit comments