Share via


SelectExpandNode Constructor

 

Namespace:   System.Web.Http.OData.Formatter.Serialization
Assembly:  System.Web.Http.OData (in System.Web.Http.OData.dll)

Overload List

Name Description
System_CAPS_pubmethod SelectExpandNode()

Creates a new instance of the SelectExpandNode class.

System_CAPS_pubmethod SelectExpandNode(SelectExpandClause, IEdmEntityType, IEdmModel)

Creates a new instance of the SelectExpandNode class describing the set of structural properties, navigation properties, and actions to select and expand for the given selectExpandClause.

See Also

SelectExpandNode Class
System.Web.Http.OData.Formatter.Serialization Namespace

Return to top

SelectExpandNode Constructor ()

Creates a new instance of the SelectExpandNode class.

Syntax

public SelectExpandNode()
public:
SelectExpandNode()
new : unit -> SelectExpandNode
Public Sub New

Remarks

The default constructor is for unit testing only.

Return to top

SelectExpandNode Constructor (SelectExpandClause, IEdmEntityType, IEdmModel)

Creates a new instance of the SelectExpandNode class describing the set of structural properties, navigation properties, and actions to select and expand for the given selectExpandClause.

Syntax

public SelectExpandNode(
    SelectExpandClause selectExpandClause,
    IEdmEntityType entityType,
    IEdmModel model
)
public:
SelectExpandNode(
    SelectExpandClause^ selectExpandClause,
    IEdmEntityType^ entityType,
    IEdmModel^ model
)
new : 
        selectExpandClause:SelectExpandClause *
        entityType:IEdmEntityType *
        model:IEdmModel -> SelectExpandNode
Public Sub New (
    selectExpandClause As SelectExpandClause,
    entityType As IEdmEntityType,
    model As IEdmModel
)

Parameters

Return to top