From addf6068bbf1d521ca690792b93b835c4d47e38e Mon Sep 17 00:00:00 2001 From: Michael Croes Date: Tue, 1 Aug 2023 22:56:08 +0200 Subject: [PATCH] style(ReadStatusAsync): Move opening brace to new line --- S7.Net/PlcAsynchronous.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/S7.Net/PlcAsynchronous.cs b/S7.Net/PlcAsynchronous.cs index d7f0db0..eb49e5d 100644 --- a/S7.Net/PlcAsynchronous.cs +++ b/S7.Net/PlcAsynchronous.cs @@ -318,7 +318,8 @@ namespace S7.Net /// The token to monitor for cancellation requests. The default value is None. /// Please note that cancellation is advisory/cooperative and will not lead to immediate cancellation in all cases. /// A task that represents the asynchronous operation, with it's result set to the current PLC status on completion. - public async Task ReadStatusAsync(CancellationToken cancellationToken = default) { + public async Task ReadStatusAsync(CancellationToken cancellationToken = default) + { var dataToSend = BuildSzlReadRequestPackage(0x0424, 0); var s7data = await RequestTsduAsync(dataToSend, cancellationToken);