Nexus.Client.PluginManagement.PluginRegistry.IsActivatiblePluginFile C# (CSharp) Method

IsActivatiblePluginFile() public method

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.
return bool
		public bool IsActivatiblePluginFile(string p_strPath)
		{
            if (PluginFactory == null)
                return true;
			return PluginFactory.IsActivatiblePluginFile(p_strPath);
		}
	}