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

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

Gets whether the plugin is a master file.
public IsMaster ( string p_strPlugin ) : bool
p_strPlugin string The plugin for which it is to be determined if the file is a plugin.
Результат bool
		public bool IsMaster(string p_strPlugin)
		{
			bool booIsMaster = false;
			UInt32 uintStatus = m_dlgIsMaster(m_ptrBossDb, StripPluginDirectory(p_strPlugin), out booIsMaster);
			HandleStatusCode(uintStatus);
			return booIsMaster;
		}