Class AssemblyRefCollection
Represents a collection of Assembly References.
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class AssemblyRefCollection : List<AssemblyRef>, IList<AssemblyRef>, ICollection<AssemblyRef>, IList, ICollection, IReadOnlyList<AssemblyRef>, IReadOnlyCollection<AssemblyRef>, IEnumerable<AssemblyRef>, IEnumerable
Constructors
AssemblyRefCollection()
AssemblyRefCollection default constructor.
Declaration
public AssemblyRefCollection()
AssemblyRefCollection(IEnumerable<AssemblyRef>)
Creates an AssemblyRefCollection from AssemblyRef enumerable.
Declaration
public AssemblyRefCollection(IEnumerable<AssemblyRef> items)
Parameters
|
System.Collections.Generic.IEnumerable<AssemblyRef>
items
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
|
System.String
assemblyPath
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
|
System.String
assemblyPath
The path of the leading assembly |
Clone(AssemblyRefCollection)
Clones the specified collection.
Declaration
public void Clone(AssemblyRefCollection source)
Parameters
|
AssemblyRefCollection
source
The source collection. |