IGLib  1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
NUnit.Engine.Extensibility.IProjectLoader Interface Reference

The IProjectLoader interface is implemented by any class that knows how to load projects in a specific format. More...

+ Inheritance diagram for NUnit.Engine.Extensibility.IProjectLoader:

Public Member Functions

bool CanLoadFrom (string path)
 Returns true if the file indicated is one that this loader knows how to load. More...
 
IProject LoadFrom (string path)
 Loads a project of a known format. More...
 

Detailed Description

The IProjectLoader interface is implemented by any class that knows how to load projects in a specific format.

Member Function Documentation

bool NUnit.Engine.Extensibility.IProjectLoader.CanLoadFrom ( string  path)

Returns true if the file indicated is one that this loader knows how to load.

Parameters
pathThe path of the project file
Returns
True if the loader knows how to load this file, otherwise false

Implemented in NUnit.Engine.Services.ProjectLoaders.VisualStudioProjectLoader, and NUnit.Engine.Services.ProjectLoaders.NUnitProjectLoader.

IProject NUnit.Engine.Extensibility.IProjectLoader.LoadFrom ( string  path)

Loads a project of a known format.

Parameters
pathThe path of the project file
Returns
An IProject interface to the loaded project or null if the project cannot be loaded

Implemented in NUnit.Engine.Services.ProjectLoaders.VisualStudioProjectLoader, and NUnit.Engine.Services.ProjectLoaders.NUnitProjectLoader.

Referenced by NUnit.Engine.Services.ProjectService.LoadFrom().


The documentation for this interface was generated from the following file: