Nexus.Client.Games.Morrowind.PluginManagement.Boss.BossSorter.GetIndexedPlugin C# (CSharp) Метод

GetIndexedPlugin() публичный Метод

Gets the plugin at the specified load index.
public GetIndexedPlugin ( Int32 p_intIndex ) : string
p_intIndex System.Int32 The load index of the plugin to retrieve.
Результат string
		public string GetIndexedPlugin(Int32 p_intIndex)
		{
			///TODO: this method doesn't work with NMM, as NMM is passing an index that doesn't account for ghosted plugins
			string strPlugin = null;
			UInt32 uintStatus = m_dlgGetIndexedPlugin(m_ptrBossDb, Convert.ToUInt32(p_intIndex), out strPlugin);
			HandleStatusCode(uintStatus);
			return AddPluginDirectory(strPlugin);
		}