EntitySetPathSegment Constructor
Namespace: System.Web.Http.OData.Routing
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Overload List
Name | Description | |
---|---|---|
EntitySetPathSegment(IEdmEntitySet) | Initializes a new instance of the EntitySetPathSegment class. |
|
EntitySetPathSegment(String) | Initializes a new instance of the EntitySetPathSegment class. |
See Also
EntitySetPathSegment Class
System.Web.Http.OData.Routing Namespace
Return to top
EntitySetPathSegment Constructor (IEdmEntitySet)
Initializes a new instance of the EntitySetPathSegment class.
Syntax
public EntitySetPathSegment(
IEdmEntitySet entitySet
)
public:
EntitySetPathSegment(
IEdmEntitySet^ entitySet
)
new :
entitySet:IEdmEntitySet -> EntitySetPathSegment
Public Sub New (
entitySet As IEdmEntitySet
)
Parameters
entitySet
Type: Microsoft.Data.Edm.IEdmEntitySetThe entity set being accessed.
Return to top
EntitySetPathSegment Constructor (String)
Initializes a new instance of the EntitySetPathSegment class.
Syntax
public EntitySetPathSegment(
string entitySetName
)
public:
EntitySetPathSegment(
String^ entitySetName
)
new :
entitySetName:string -> EntitySetPathSegment
Public Sub New (
entitySetName As String
)
Parameters
entitySetName
Type: System.StringName of the entity set.
Return to top