Esempio n. 1
0
 public void send_xrefsTo(int address, IdaRefType refType)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("xrefsTo", TMessageType.Call, seqid_));
   xrefsTo_args args = new xrefsTo_args();
   args.Address = address;
   args.RefType = refType;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }
Esempio n. 2
0
 public void xrefsTo_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   xrefsTo_args args = new xrefsTo_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   xrefsTo_result result = new xrefsTo_result();
   result.Success = iface_.xrefsTo(args.Address, args.RefType);
   oprot.WriteMessageBegin(new TMessage("xrefsTo", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }