[This is preliminary documentation and is subject to change.]
Called when we get PayPriceReply packet after calling RequestPayPrice
Namespace:
OpenMetaverse
Assembly:
OpenMetaverse (in OpenMetaverse.dll) Version: 1.0.0.20057
Syntax
| | | | | | | | | |
| | C# | | | Visual Basic | | | Visual C++ | |
public delegate void PayPriceReply(
Simulator simulator,
UUID objectID,
int defaultPrice,
int[] buttonPrices
)
Public Delegate Sub PayPriceReply ( _
simulator As Simulator, _
objectID As UUID, _
defaultPrice As Integer, _
buttonPrices As Integer() _
)
public delegate void PayPriceReply(
Simulator^ simulator,
UUID objectID,
int defaultPrice,
array<int>^ buttonPrices
)
Parameters
- simulator
- Simulator
Simulator the packet was received from
- objectID
- UUID
Object
- defaultPrice
- Int32
Default pay price for the object, -1 means control should be disabled, -2 it should be empty
- buttonPrices
- array<
Int32
>[]()[]
Array of 4 prices, -1 means button should be disabled
See Also