OpenMetaverse.ObjectManager.OnObjectProperties C# (CSharp) Method

OnObjectProperties() protected method

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