Nexus.Client.Games.Gamebryo.PluginManagement.Sorter.PluginSorter.Load C# (CSharp) Method

Load() protected method

Loads the specified masterlist.
Loads the masterlist and userlist from the paths specified. Can be called multiple times. On error, the database is unchanged.
protected Load ( string p_strMasterlistPath, string p_strUserlistPath ) : void
p_strMasterlistPath string The path to the masterlist to load.
p_strUserlistPath string The path to the userlist to load.
return void
		protected void Load(string p_strMasterlistPath, string p_strUserlistPath)
		{
			UInt32 uintStatus = m_dlgLoadLists(m_ptrSorterDb, p_strMasterlistPath, p_strUserlistPath);

			if (uintStatus == 3)
				uintStatus = m_dlgLoadLists(m_ptrSorterDb, p_strMasterlistPath, null);

			HandleStatusCode(uintStatus);
		}