Nexus.Client.PluginManagement.PluginRegistry.IsActivatiblePluginFile C# (CSharp) Метод

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

Determines if the specified file is a plugin that can be activated for the game mode.
public IsActivatiblePluginFile ( string p_strPath ) : bool
p_strPath string The path to the file for which it is to be determined if it is a plugin file.
Результат bool
		public bool IsActivatiblePluginFile(string p_strPath)
		{
            if (PluginFactory == null)
                return true;
			return PluginFactory.IsActivatiblePluginFile(p_strPath);
		}
	}