Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.EventInfoRequestPacket$AgentDataBlock


  /// <summary>Requests Event Details</summary>
  /// <param name="eventID">ID of Event returned from the <see cref="StartEventsSearch"/> method</param>
  public void EventInfoRequest(long eventID)
  {
    EventInfoRequestPacket find = new EventInfoRequestPacket();
    find.AgentData.AgentID = Client.self.getAgentID();
    find.AgentData.SessionID = Client.self.getSessionID();

    find.EventData.EventID = eventID;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.EventInfoRequestPacket$AgentDataBlock

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.