示例#1
0
 public RPCInfo(RPCCache cache, ushort ushortID, string stringID, bool frequentMethod, Type[] paramTypes)
 {
     Cache          = cache;
     UshortID       = ushortID;
     StringID       = stringID;
     FrequentMethod = frequentMethod;
     ParameterTypes = paramTypes;
 }
示例#2
0
 public RPCServerInfo(ServerRPCAttribute attribute, RPCCache cache, ushort ushortID, string stringID, Type[] paramTypes)
     : base(cache, ushortID, stringID, attribute.Frequent, paramTypes)
 {
     Options = new RPCServerInfoOptions(attribute.CallClientRPC);
 }
示例#3
0
 public RPCClientInfo(ClientRPCAttribute attribute, RPCCache cache, ushort ushortID, string stringID, Type[] paramTypes)
     : base(cache, ushortID, stringID, attribute.Frequent, paramTypes)
 {
     Options = new RPCClientInfoOptions();
 }