diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/slice2cs/Gen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp index 2c2ccf0eb2d..76ef3049cbc 100644 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -5212,12 +5212,12 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p) _out << nl << "Ice.AsyncResult<" << delType << "> begin_" << p->name() << spar << paramsNewAsync << epar << ';'; _out << sp; + writeDocCommentAMI(p, InParam, deprecateReason, + "<param name=\"ctx__\">The Context map to send with the invocation.</param>"); if(!deprecateReason.empty()) { _out << nl << "[_System.Obsolete(\"" << deprecateReason << "\")]"; } - writeDocCommentAMI(p, InParam, deprecateReason, - "<param name=\"ctx__\">The Context map to send with the invocation.</param>"); _out << nl << "Ice.AsyncResult<" << delType << "> begin_" << p->name() << spar << paramsNewAsync << "_System.Collections.Generic.Dictionary<string, string> ctx__" << epar << ';'; |