Share via


EdmPropertyPathExpression Constructors

Definition

Overloads

EdmPropertyPathExpression(IEnumerable<String>)

Initializes a new instance of the EdmPropertyPathExpression class.

EdmPropertyPathExpression(String)

Initializes a new instance of the EdmPropertyPathExpression class.

EdmPropertyPathExpression(String[])

Initializes a new instance of the EdmPropertyPathExpression class.

EdmPropertyPathExpression(IEnumerable<String>)

Initializes a new instance of the EdmPropertyPathExpression class.

public EdmPropertyPathExpression (System.Collections.Generic.IEnumerable<string> pathSegments);
new Microsoft.OData.Edm.Vocabularies.EdmPropertyPathExpression : seq<string> -> Microsoft.OData.Edm.Vocabularies.EdmPropertyPathExpression
Public Sub New (pathSegments As IEnumerable(Of String))

Parameters

pathSegments
IEnumerable<String>

Path segments.

Applies to

EdmPropertyPathExpression(String)

Initializes a new instance of the EdmPropertyPathExpression class.

public EdmPropertyPathExpression (string path);
new Microsoft.OData.Edm.Vocabularies.EdmPropertyPathExpression : string -> Microsoft.OData.Edm.Vocabularies.EdmPropertyPathExpression
Public Sub New (path As String)

Parameters

path
String

Path string containing segments separated by '/'. For example: "A.B/C/D.E/Func1(NS.T,NS.T2)/P1".

Applies to

EdmPropertyPathExpression(String[])

Initializes a new instance of the EdmPropertyPathExpression class.

public EdmPropertyPathExpression (params string[] pathSegments);
new Microsoft.OData.Edm.Vocabularies.EdmPropertyPathExpression : string[] -> Microsoft.OData.Edm.Vocabularies.EdmPropertyPathExpression
Public Sub New (ParamArray pathSegments As String())

Parameters

pathSegments
String[]

Path segments.

Applies to