aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/csharp_generator.cc
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-11-14 18:15:39 +0100
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-11-14 18:21:22 +0100
commitbff1452e5ed589dde8137f7f0b58db9a5e8eb6e4 (patch)
tree51c9e1b09a4c9d4319ab0cda74e97ac1637a781a /src/compiler/csharp_generator.cc
parentb187cfe460918cd7378da7be5c8211d682147b14 (diff)
mark as experimental
Diffstat (limited to 'src/compiler/csharp_generator.cc')
-rw-r--r--src/compiler/csharp_generator.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/compiler/csharp_generator.cc b/src/compiler/csharp_generator.cc
index 82deabe064..59ddbd82f6 100644
--- a/src/compiler/csharp_generator.cc
+++ b/src/compiler/csharp_generator.cc
@@ -613,7 +613,10 @@ void GenerateBindServiceWithBinderMethod(Printer* out,
const ServiceDescriptor* service) {
out->Print(
"/// <summary>Register service method implementations with a service "
- "binder. Useful when customizing the service binding logic.</summary>\n");
+ "binder. Useful when customizing the service binding logic.\n"
+ "/// Note: this method is part of an experimental API that can change or "
+ "be "
+ "removed without any prior notice.</summary>\n");
out->Print(
"/// <param name=\"serviceBinder\">Service methods will be bound by "
"calling <c>AddMethod</c> on this object."