Share via


EdmEnumObjectCollection Constructors

Definition

Overloads

EdmEnumObjectCollection(IEdmCollectionTypeReference)

Initialzes a new instance of the EdmEnumObjectCollection class.

EdmEnumObjectCollection(IEdmCollectionTypeReference, IList<IEdmEnumObject>)

Initialzes a new instance of the EdmEnumObjectCollection class.

EdmEnumObjectCollection(IEdmCollectionTypeReference)

Initialzes a new instance of the EdmEnumObjectCollection class.

public EdmEnumObjectCollection (Microsoft.OData.Edm.IEdmCollectionTypeReference edmType);
new Microsoft.AspNetCore.OData.Formatter.Value.EdmEnumObjectCollection : Microsoft.OData.Edm.IEdmCollectionTypeReference -> Microsoft.AspNetCore.OData.Formatter.Value.EdmEnumObjectCollection
Public Sub New (edmType As IEdmCollectionTypeReference)

Parameters

edmType
IEdmCollectionTypeReference

The edm type of the collection.

Applies to

EdmEnumObjectCollection(IEdmCollectionTypeReference, IList<IEdmEnumObject>)

Initialzes a new instance of the EdmEnumObjectCollection class.

public EdmEnumObjectCollection (Microsoft.OData.Edm.IEdmCollectionTypeReference edmType, System.Collections.Generic.IList<Microsoft.AspNetCore.OData.Formatter.Value.IEdmEnumObject> list);
new Microsoft.AspNetCore.OData.Formatter.Value.EdmEnumObjectCollection : Microsoft.OData.Edm.IEdmCollectionTypeReference * System.Collections.Generic.IList<Microsoft.AspNetCore.OData.Formatter.Value.IEdmEnumObject> -> Microsoft.AspNetCore.OData.Formatter.Value.EdmEnumObjectCollection
Public Sub New (edmType As IEdmCollectionTypeReference, list As IList(Of IEdmEnumObject))

Parameters

edmType
IEdmCollectionTypeReference

The edm type of the collection.

list
IList<IEdmEnumObject>

The list that is wrapped by the new collection.

Applies to