示例#1
0
 ///<summary>Raises the FindObjectByPath Event</summary>
 /// <param name="e">A FindObjectByPathEventArgs object containing
 /// the data sent from the simulator</param>
 protected virtual void OnFindObjectByPathReply(FindObjectByPathReplyEventArgs e)
 {
     EventHandler<FindObjectByPathReplyEventArgs> handler = m_FindObjectByPathReply;
     if (handler != null)
         handler(this, e);
 }
示例#2
0
 public virtual void Inventory_OnFindObjectByPath(object sender, FindObjectByPathReplyEventArgs e) { OnEvent("On-Find-Object-By-Path", paramNamesOnFindObjectByPath, paramTypesOnFindObjectByPath, e); }