EdmChangedObjectCollection Constructor
Namespace: System.Web.OData
Assembly: System.Web.OData (in System.Web.OData.dll)
Overload List
Name | Description | |
---|---|---|
EdmChangedObjectCollection(IEdmEntityType) | Initializes a new instance of the EdmChangedObjectCollection class. |
|
EdmChangedObjectCollection(IEdmEntityType, IList<IEdmChangedObject>) | Initializes a new instance of the EdmChangedObjectCollection class. |
See Also
EdmChangedObjectCollection Class
System.Web.OData Namespace
Return to top
EdmChangedObjectCollection Constructor (IEdmEntityType)
Initializes a new instance of the EdmChangedObjectCollection class.
Syntax
public EdmChangedObjectCollection(
IEdmEntityType entityType
)
public:
EdmChangedObjectCollection(
IEdmEntityType^ entityType
)
new :
entityType:IEdmEntityType -> EdmChangedObjectCollection
Public Sub New (
entityType As IEdmEntityType
)
Parameters
entityType
Type: Microsoft.OData.Edm.IEdmEntityTypeThe Edm entity type of the collection.
Return to top
EdmChangedObjectCollection Constructor (IEdmEntityType, IList<IEdmChangedObject>)
Initializes a new instance of the EdmChangedObjectCollection class.
Syntax
public EdmChangedObjectCollection(
IEdmEntityType entityType,
IList<IEdmChangedObject> changedObjectList
)
public:
EdmChangedObjectCollection(
IEdmEntityType^ entityType,
IList<IEdmChangedObject^>^ changedObjectList
)
new :
entityType:IEdmEntityType *
changedObjectList:IList<IEdmChangedObject> -> EdmChangedObjectCollection
Public Sub New (
entityType As IEdmEntityType,
changedObjectList As IList(Of IEdmChangedObject)
)
Parameters
entityType
Type: Microsoft.OData.Edm.IEdmEntityTypeThe Edm type of the collection.
changedObjectList
Type: System.Collections.Generic.IList<IEdmChangedObject>The list that is wrapped by the new collection.
Return to top