Share via


EdmAnnotationPathExpression Constructors

Definition

Overloads

EdmAnnotationPathExpression(IEnumerable<String>)

Initializes a new instance of the EdmPropertyPathExpression class.

EdmAnnotationPathExpression(String)

Initializes a new instance of the EdmAnnotationPathExpression class.

EdmAnnotationPathExpression(String[])

Initializes a new instance of the EdmAnnotationPathExpression class.

EdmAnnotationPathExpression(IEnumerable<String>)

Initializes a new instance of the EdmPropertyPathExpression class.

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

Parameters

pathSegments
IEnumerable<String>

Path segments.

Applies to

EdmAnnotationPathExpression(String)

Initializes a new instance of the EdmAnnotationPathExpression class.

public EdmAnnotationPathExpression (string path);
new Microsoft.OData.Edm.Vocabularies.EdmAnnotationPathExpression : string -> Microsoft.OData.Edm.Vocabularies.EdmAnnotationPathExpression
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

EdmAnnotationPathExpression(String[])

Initializes a new instance of the EdmAnnotationPathExpression class.

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

Parameters

pathSegments
String[]

Path segments.

Applies to