Example #1
0
 public RpcApiMethodAttribute(RpcApiMethod method)
 {
     Method = method;
 }
Example #2
0
 public static string Value(this RpcApiMethod method)
 {
     return(_enumStringMap[method]);
 }
Example #3
0
 public RpcApiMethodAttribute(string method)
 {
     Method = RpcApiMethods.Create(method);
 }