From 2e05eed6eb72327650d68575e9d0929f25b6f1bb Mon Sep 17 00:00:00 2001 From: Changgyu Choi Date: Tue, 28 Sep 2021 14:04:31 +0900 Subject: [PATCH] Fix C# Disconnect() visibility to public Disconnect() is public API. This patch changes the visibility to public. Change-Id: Icd19b70ae640d51e4224da7c8976ae98d12fcd26 Signed-off-by: Changgyu Choi --- idlc/gen/cs_stub_gen_cb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idlc/gen/cs_stub_gen_cb.h b/idlc/gen/cs_stub_gen_cb.h index d8270fe..cf93d85 100644 --- a/idlc/gen/cs_stub_gen_cb.h +++ b/idlc/gen/cs_stub_gen_cb.h @@ -62,7 +62,7 @@ R"__cs_cb( /// /// Thrown when an internal IO error occurrs. /// - protected void Disconnect() + public void Disconnect() { Port?.Disconnect(); Port = null; -- 2.7.4