OpenMetaverse.ObjectManager.OnPayPriceReply C# (CSharp) 메소드

OnPayPriceReply() 보호된 메소드

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