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

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

Determines if the specified plugin is active.
public IsPluginActive ( string p_strPlugin ) : bool
p_strPlugin string The plugins whose active state is to be determined.
Результат bool
		public bool IsPluginActive(string p_strPlugin)
		{
			bool booIsActive = false;
			UInt32 uintStatus = m_dlgIsPluginActive(m_ptrBossDb, StripPluginDirectory(p_strPlugin), out booIsActive);
			HandleStatusCode(uintStatus);
			return booIsActive;
		}