We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b82e561 commit e23698eCopy full SHA for e23698e
projects/client/Apigen/src/apigen/Apigen.cs
@@ -832,6 +832,8 @@ public void MaybeEmitModelMethod(MethodInfo method) {
832
if (method.IsSpecialName) {
833
// It's some kind of event- or property-related method.
834
// It shouldn't be autogenerated.
835
+ } else if (method.Name.EndsWith("Nowait")) {
836
+ // Skip *Nowait versions
837
} else if (Attribute(method, typeof(AmqpMethodDoNotImplementAttribute)) != null) {
838
// Skip this method, by request (AmqpMethodDoNotImplement)
839
} else if (Attribute(method, typeof(AmqpContentHeaderFactoryAttribute)) != null) {
0 commit comments