EdmComplexObjectCollection Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.