PropertyAccessPathSegment Constructor
Namespace: System.Web.OData.Routing
Assembly: System.Web.OData (in System.Web.OData.dll)
Overload List
Name | Description | |
---|---|---|
PropertyAccessPathSegment(IEdmProperty) | Initializes a new instance of the PropertyAccessPathSegment class. |
|
PropertyAccessPathSegment(String) | Initializes a new instance of the PropertyAccessPathSegment class. |
See Also
PropertyAccessPathSegment Class
System.Web.OData.Routing Namespace
Return to top
PropertyAccessPathSegment Constructor (IEdmProperty)
Initializes a new instance of the PropertyAccessPathSegment class.
Syntax
public PropertyAccessPathSegment(
IEdmProperty property
)
public:
PropertyAccessPathSegment(
IEdmProperty^ property
)
new :
property:IEdmProperty -> PropertyAccessPathSegment
Public Sub New (
property As IEdmProperty
)
Parameters
property
Type: Microsoft.OData.Edm.IEdmPropertyThe property being accessed by this segment.
Return to top
PropertyAccessPathSegment Constructor (String)
Initializes a new instance of the PropertyAccessPathSegment class.
Syntax
public PropertyAccessPathSegment(
string propertyName
)
public:
PropertyAccessPathSegment(
String^ propertyName
)
new :
propertyName:string -> PropertyAccessPathSegment
Public Sub New (
propertyName As String
)
Parameters
propertyName
Type: System.StringName of the property.
Return to top