EdmComplexObjectCollection Constructor
Namespace: System.Web.Http.OData
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Overload List
Name | Description | |
---|---|---|
EdmComplexObjectCollection(IEdmCollectionTypeReference) | Initialzes a new instance of the EdmComplexObjectCollection class. |
|
EdmComplexObjectCollection(IEdmCollectionTypeReference, IList<IEdmComplexObject>) | Initialzes a new instance of the EdmComplexObjectCollection class. |
See Also
EdmComplexObjectCollection Class
System.Web.Http.OData Namespace
Return to top
EdmComplexObjectCollection Constructor (IEdmCollectionTypeReference)
Initialzes a new instance of the EdmComplexObjectCollection class.
Syntax
public EdmComplexObjectCollection(
IEdmCollectionTypeReference edmType
)
public:
EdmComplexObjectCollection(
IEdmCollectionTypeReference^ edmType
)
new :
edmType:IEdmCollectionTypeReference -> EdmComplexObjectCollection
Public Sub New (
edmType As IEdmCollectionTypeReference
)
Parameters
edmType
Type: Microsoft.Data.Edm.IEdmCollectionTypeReferenceThe edm type of the collection.
Return to top
EdmComplexObjectCollection Constructor (IEdmCollectionTypeReference, IList<IEdmComplexObject>)
Initialzes a new instance of the EdmComplexObjectCollection class.
Syntax
public EdmComplexObjectCollection(
IEdmCollectionTypeReference edmType,
IList<IEdmComplexObject> list
)
public:
EdmComplexObjectCollection(
IEdmCollectionTypeReference^ edmType,
IList<IEdmComplexObject^>^ list
)
new :
edmType:IEdmCollectionTypeReference *
list:IList<IEdmComplexObject> -> EdmComplexObjectCollection
Public Sub New (
edmType As IEdmCollectionTypeReference,
list As IList(Of IEdmComplexObject)
)
Parameters
edmType
Type: Microsoft.Data.Edm.IEdmCollectionTypeReferenceThe edm type of the collection.
list
Type: System.Collections.Generic.IList<IEdmComplexObject>The list that is wrapped by the new collection.
Return to top