New to Telerik ReportingStart a free 30-day trial

Represents an assembly reference.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
public class AssemblyRef

Inheritance: objectAssemblyRef

Constructors

C#
public AssemblyRef()

Properties

Name

string

The name of the .dll file containing the .NET assembly

C#
public string Name { get; set; }

Assembly bytes in common object file format (COFF)-based image containing an emitted assembly

C#
[TypeConverter(typeof(ByteArrayConverter))]
public byte[] RawAssembly { get; set; }

Methods

Generates an AssemblyRef from assembly .dll file location

C#
public static AssemblyRef FromFile(string assemblyPath)
Parameters:assemblyPathstringReturns:

AssemblyRef

Returns the resulting AssemblyRef

Returns a string that represents the current object.

C#
public override string ToString()
Returns:

string

Returns a string that represents the current object.

Overrides: object.ToString()