/// <param name="simulator">The <see cref="Simulator"/> the object is located</param>
/// <param name="objectID">The ID of the object</param>
/// <remarks>The result is raised in the <see cref="PayPriceReply"/> event</remarks>
public void RequestPayPrice(Simulator simulator, UUID objectID)
{
RequestPayPricePacket payPriceRequest = new RequestPayPricePacket();
payPriceRequest.ObjectData = new RequestPayPricePacket.ObjectDataBlock();
payPriceRequest.ObjectData.ObjectID = objectID;
Client.network.SendPacket(payPriceRequest, simulator);