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) | EdmEnumObjectCollection(IEdmCollectionTypeReference) | Initialzes a new instance of the EdmEnumObjectCollection class. | 
| .jpeg) | EdmEnumObjectCollection(IEdmCollectionTypeReference, IList<IEdmEnumObject>) | Initialzes a new instance of the EdmEnumObjectCollection class. | 
See Also
EdmEnumObjectCollection Class
System.Web.OData Namespace
Return to top
EdmEnumObjectCollection Constructor (IEdmCollectionTypeReference)
Initialzes a new instance of the EdmEnumObjectCollection class.
Syntax
public EdmEnumObjectCollection(
    IEdmCollectionTypeReference edmType
)
public:
EdmEnumObjectCollection(
    IEdmCollectionTypeReference^ edmType
)
new : 
        edmType:IEdmCollectionTypeReference -> EdmEnumObjectCollection
Public Sub New (
    edmType As IEdmCollectionTypeReference
)
Parameters
- edmType 
 Type: Microsoft.OData.Edm.IEdmCollectionTypeReference- The edm type of the collection. 
Return to top
EdmEnumObjectCollection Constructor (IEdmCollectionTypeReference, IList<IEdmEnumObject>)
Initialzes a new instance of the EdmEnumObjectCollection class.
Syntax
public EdmEnumObjectCollection(
    IEdmCollectionTypeReference edmType,
    IList<IEdmEnumObject> list
)
public:
EdmEnumObjectCollection(
    IEdmCollectionTypeReference^ edmType,
    IList<IEdmEnumObject^>^ list
)
new : 
        edmType:IEdmCollectionTypeReference *
        list:IList<IEdmEnumObject> -> EdmEnumObjectCollection
Public Sub New (
    edmType As IEdmCollectionTypeReference,
    list As IList(Of IEdmEnumObject)
)
Parameters
- edmType 
 Type: Microsoft.OData.Edm.IEdmCollectionTypeReference- The edm type of the collection. 
- list 
 Type: System.Collections.Generic.IList<IEdmEnumObject>- The list that is wrapped by the new collection. 
Return to top