EdmEnumObjectCollection Constructor
Namespace: System.Web.OData
Assembly: System.Web.OData (in System.Web.OData.dll)
Overload List
Name | Description | |
---|---|---|
![]() |
EdmEnumObjectCollection(IEdmCollectionTypeReference) | Initialzes a new instance of the EdmEnumObjectCollection class. |
![]() |
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.IEdmCollectionTypeReferenceThe 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.IEdmCollectionTypeReferenceThe edm type of the collection.
list
Type: System.Collections.Generic.IList<IEdmEnumObject>The list that is wrapped by the new collection.
Return to top