Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace:   System.Web.OData
Assembly:  System.Web.OData (in System.Web.OData.dll)
Overload List
| Name | Description | |
|---|---|---|
| .jpeg) | EdmEntityObjectCollection(IEdmCollectionTypeReference) | Initialzes a new instance of the EdmEntityObjectCollection class. | 
| .jpeg) | EdmEntityObjectCollection(IEdmCollectionTypeReference, IList<IEdmEntityObject>) | Initialzes a new instance of the EdmEntityObjectCollection class. | 
See Also
EdmEntityObjectCollection Class
System.Web.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.OData.Edm.IEdmCollectionTypeReference- The 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.OData.Edm.IEdmCollectionTypeReference- The edm type of the collection. 
- list 
 Type: System.Collections.Generic.IList<IEdmEntityObject>- The list that is wrapped by the new collection. 
Return to top