コード例 #1
0
 public static void VoidStaticMethofWithHeadersAndMessageParam(SimpleMessage message, IDictionary<string, string> headers)
 {
 }
コード例 #2
0
 public static void VoidStaticMethodWithMessageParam(SimpleMessage message)
 {
 }
コード例 #3
0
 public static void VoidStaticMethodWithTwoMessageParams(SimpleMessage message, DerivedSimpleMessage anotherMessage)
 {
 }
コード例 #4
0
 public static void VoidStaticMethodWithGuidAndMessageParam(SimpleMessage message, Guid guid)
 {
 }
コード例 #5
0
 public static int ReturningStaticMethofWithHeadersAndMessageParam(SimpleMessage message, IDictionary<string, string> headers)
 {
     return 0;
 }
コード例 #6
0
 public static int ReturningStaticMethodWithTwoMessageParams(SimpleMessage message, DerivedSimpleMessage anotherMessage)
 {
     return 0;
 }
コード例 #7
0
 public static int ReturningStaticMethodWithMessageParam(SimpleMessage message)
 {
     return 0;
 }
コード例 #8
0
 public static int ReturningStaticMethodWithGuidAndMessageParam(SimpleMessage message, Guid guid)
 {
     return 0;
 }