RdlCollection<T> Constructors

Definition

Initializes a new instance of the RdlCollection<T> class.

Overloads

RdlCollection<T>()

Initializes a new instance of the RdlCollection<T> class.

RdlCollection<T>(IContainedObject)

Initializes a new instance of the RdlCollection<T> class.

RdlCollection<T>(IEnumerable<T>)

Initializes a new instance of the RdlCollection<T> class.

RdlCollection<T>()

Initializes a new instance of the RdlCollection<T> class.

public:
 RdlCollection();
public RdlCollection ();
Public Sub New ()

Applies to

RdlCollection<T>(IContainedObject)

Initializes a new instance of the RdlCollection<T> class.

public:
 RdlCollection(Microsoft::ReportingServices::RdlObjectModel::IContainedObject ^ parent);
public RdlCollection (Microsoft.ReportingServices.RdlObjectModel.IContainedObject parent);
new Microsoft.ReportingServices.RdlObjectModel.RdlCollection<'T> : Microsoft.ReportingServices.RdlObjectModel.IContainedObject -> Microsoft.ReportingServices.RdlObjectModel.RdlCollection<'T>
Public Sub New (parent As IContainedObject)

Parameters

parent
IContainedObject

The parent of the collection.

Applies to

RdlCollection<T>(IEnumerable<T>)

Initializes a new instance of the RdlCollection<T> class.

public:
 RdlCollection(System::Collections::Generic::IEnumerable<T> ^ items);
public RdlCollection (System.Collections.Generic.IEnumerable<T> items);
new Microsoft.ReportingServices.RdlObjectModel.RdlCollection<'T> : seq<'T> -> Microsoft.ReportingServices.RdlObjectModel.RdlCollection<'T>
Public Sub New (items As IEnumerable(Of T))

Parameters

items
IEnumerable<T>

The items in the collection.

Applies to