EdmPathExpression Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EdmPathExpression(IEnumerable<String>) |
Initializes a new instance of the EdmPathExpression class. |
EdmPathExpression(String) |
Initializes a new instance of the EdmPathExpression class. |
EdmPathExpression(String[]) |
Initializes a new instance of the EdmPathExpression class. |
EdmPathExpression(IEnumerable<String>)
Initializes a new instance of the EdmPathExpression class.
public EdmPathExpression (System.Collections.Generic.IEnumerable<string> pathSegments);
new Microsoft.OData.Edm.EdmPathExpression : seq<string> -> Microsoft.OData.Edm.EdmPathExpression
Public Sub New (pathSegments As IEnumerable(Of String))
Parameters
- pathSegments
- IEnumerable<String>
Path segments.
Applies to
EdmPathExpression(String)
Initializes a new instance of the EdmPathExpression class.
public EdmPathExpression (string path);
new Microsoft.OData.Edm.EdmPathExpression : string -> Microsoft.OData.Edm.EdmPathExpression
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
EdmPathExpression(String[])
Initializes a new instance of the EdmPathExpression class.
public EdmPathExpression (params string[] pathSegments);
new Microsoft.OData.Edm.EdmPathExpression : string[] -> Microsoft.OData.Edm.EdmPathExpression
Public Sub New (ParamArray pathSegments As String())
Parameters
- pathSegments
- String[]
Path segments.