OpenMetaverse.ParcelManager.PropertiesRequest C# (CSharp) Method

PropertiesRequest() public method

Request properties of parcels using a bounding box selection
public PropertiesRequest ( Simulator simulator, float north, float east, float south, float west, int sequenceID, bool snapSelection ) : void
simulator Simulator Simulator containing the parcel
north float Northern boundary of the parcel selection
east float Eastern boundary of the parcel selection
south float Southern boundary of the parcel selection
west float Western boundary of the parcel selection
sequenceID int An arbitrary integer that will be returned /// with the ParcelProperties reply, useful for distinguishing between /// different types of parcel property requests
snapSelection bool A boolean that is returned with the /// ParcelProperties reply, useful for snapping focus to a single /// parcel
return void
        public void PropertiesRequest(Simulator simulator, float north, float east, float south, float west,
            int sequenceID, bool snapSelection)
        {
            ParcelPropertiesRequestPacket request = new ParcelPropertiesRequestPacket();

            request.AgentData.AgentID = Client.Self.AgentID;
            request.AgentData.SessionID = Client.Self.SessionID;
            request.ParcelData.North = north;
            request.ParcelData.East = east;
            request.ParcelData.South = south;
            request.ParcelData.West = west;
            request.ParcelData.SequenceID = sequenceID;
            request.ParcelData.SnapSelection = snapSelection;

            Client.Network.SendPacket(request, simulator);
        }

Same methods

ParcelManager::PropertiesRequest ( Simulator simulator, int localID, int sequenceID ) : void