Aurora.Addon.HyperGrid.HGInventoryService.FinishedStartup C# (CSharp) Method

FinishedStartup() public method

public FinishedStartup ( ) : void
return void
        public override void FinishedStartup()
        {
            if (m_registry == null)//Not initialized
                return;

            InventoryInConnector inConnector = m_registry.RequestModuleInterface<InventoryInConnector> ();
            if (inConnector != null)//Add the external handler
                inConnector.AddExistingUrlForClient ("", "/xinventory", 0);
            base.FinishedStartup ();
        }