ClassAssemblyRefCollection
Represents a collection of Assembly References.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
public class AssemblyRefCollection : List<AssemblyRef>
Inheritance: objectList<AssemblyRef>AssemblyRefCollection
Constructors
AssemblyRefCollection()
AssemblyRefCollection default constructor.
Declaration
public AssemblyRefCollection()
AssemblyRefCollection(IEnumerable<AssemblyRef>)
Creates an AssemblyRefCollection from AssemblyRef enumerable.
Declaration
public AssemblyRefCollection(IEnumerable<AssemblyRef> items)
Parameters
items
IEnumerable<AssemblyRef>
Assembly references enumerable from which to initialize the collection.
Methods
Add(string)
Adds a single assembly apointed from the assemblyPath parameter.
Declaration
public void Add(string assemblyPath)
Parameters
assemblyPath
string
The path of the assembly to add a reference from
AddFromAssemblyPath(string)
Adds the assembly pointed from the assemblyPath along with the rest of the .dll files located in the same directory.
Declaration
public void AddFromAssemblyPath(string assemblyPath)
Parameters
assemblyPath
string
The path of the leading assembly
Clone(AssemblyRefCollection)
Clones the specified collection.
Declaration
public void Clone(AssemblyRefCollection source)
Parameters
source
The source collection.