Contains the Event data returned from the data server from an AgentWearablesRequest
Inheritance: System.EventArgs
Exemplo n.º 1
0
 /// <summary>Raises the AgentWearablesReply event</summary>
 /// <param name="e">An AgentWearablesReplyEventArgs object containing the
 /// data returned from the data server</param>
 protected virtual void OnAgentWearables(AgentWearablesReplyEventArgs e)
 {
     EventHandler<AgentWearablesReplyEventArgs> handler = m_AgentWearablesReply;
     if (handler != null)
         handler(this, e);
 }
Exemplo n.º 2
0
 public virtual void Appearance_OnAgentWearables(object sender, AgentWearablesReplyEventArgs e) { OnEvent("On-Agent-Wearables", paramNamesOnAgentWearables, paramTypesOnAgentWearables); }