OpenMetaverse.ObjectManager.OnPayPriceReply C# (CSharp) Method

OnPayPriceReply() protected method

Raises the PayPriceReply Event
protected OnPayPriceReply ( PayPriceReplyEventArgs e ) : void
e PayPriceReplyEventArgs A PayPriceReplyEventArgs object containing /// the data sent from the simulator
return void
        protected virtual void OnPayPriceReply(PayPriceReplyEventArgs e)
        {
            EventHandler<PayPriceReplyEventArgs> handler = m_PayPriceReply;
            if (handler != null)
                handler(this, e);
        }