Share via


EdmComplexObjectCollection Constructors

Definition

Overloads

EdmComplexObjectCollection(IEdmCollectionTypeReference)

Initialzes a new instance of the EdmComplexObjectCollection class.

EdmComplexObjectCollection(IEdmCollectionTypeReference, IList<IEdmComplexObject>)

Initialzes a new instance of the EdmComplexObjectCollection class.

EdmComplexObjectCollection(IEdmCollectionTypeReference)

Initialzes a new instance of the EdmComplexObjectCollection class.

public EdmComplexObjectCollection (Microsoft.OData.Edm.IEdmCollectionTypeReference edmType);
new Microsoft.AspNet.OData.EdmComplexObjectCollection : Microsoft.OData.Edm.IEdmCollectionTypeReference -> Microsoft.AspNet.OData.EdmComplexObjectCollection
Public Sub New (edmType As IEdmCollectionTypeReference)

Parameters

edmType
IEdmCollectionTypeReference

The edm type of the collection.

Applies to

EdmComplexObjectCollection(IEdmCollectionTypeReference, IList<IEdmComplexObject>)

Initialzes a new instance of the EdmComplexObjectCollection class.

public EdmComplexObjectCollection (Microsoft.OData.Edm.IEdmCollectionTypeReference edmType, System.Collections.Generic.IList<Microsoft.AspNet.OData.IEdmComplexObject> list);
new Microsoft.AspNet.OData.EdmComplexObjectCollection : Microsoft.OData.Edm.IEdmCollectionTypeReference * System.Collections.Generic.IList<Microsoft.AspNet.OData.IEdmComplexObject> -> Microsoft.AspNet.OData.EdmComplexObjectCollection
Public Sub New (edmType As IEdmCollectionTypeReference, list As IList(Of IEdmComplexObject))

Parameters

edmType
IEdmCollectionTypeReference

The edm type of the collection.

list
IList<IEdmComplexObject>

The list that is wrapped by the new collection.

Applies to