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