OpenMetaverse.ForceSelectObjectsReplyEventArgs.ForceSelectObjectsReplyEventArgs C# (CSharp) Method

ForceSelectObjectsReplyEventArgs() public method

Construct a new instance of the ForceSelectObjectsReplyEventArgs class
public ForceSelectObjectsReplyEventArgs ( Simulator simulator, List objectIDs, bool resetList ) : System
simulator Simulator The simulator the parcel data was retrieved from
objectIDs List The list of primitive IDs
resetList bool true if the list is clean and contains the information /// only for a given request
return System
        public ForceSelectObjectsReplyEventArgs(Simulator simulator, List<uint> objectIDs, bool resetList)
        {
            this.m_Simulator = simulator;
            this.m_ObjectIDs = objectIDs;
            this.m_ResetList = resetList;
        }
ForceSelectObjectsReplyEventArgs