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) | EdmComplexObjectCollection(IEdmCollectionTypeReference) | Initialzes a new instance of the EdmComplexObjectCollection class. | 
| .jpeg) | EdmComplexObjectCollection(IEdmCollectionTypeReference, IList<IEdmComplexObject>) | Initialzes a new instance of the EdmComplexObjectCollection class. | 
See Also
EdmComplexObjectCollection Class
System.Web.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.OData.Edm.IEdmCollectionTypeReference- The 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.OData.Edm.IEdmCollectionTypeReference- The edm type of the collection. 
- list 
 Type: System.Collections.Generic.IList<IEdmComplexObject>- The list that is wrapped by the new collection. 
Return to top