ParseDynamicPathSegment Delegate
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.
Represents a delegate for parsing an unknown path segment or an open property segment
public delegate System.Collections.Generic.ICollection<Microsoft.OData.UriParser.ODataPathSegment> ParseDynamicPathSegment(ODataPathSegment previous, string identifier, string parenthesisExpression);
type ParseDynamicPathSegment = delegate of ODataPathSegment * string * string -> ICollection<ODataPathSegment>
Public Delegate Function ParseDynamicPathSegment(previous As ODataPathSegment, identifier As String, parenthesisExpression As String) As ICollection(Of ODataPathSegment)
Parameters
- previous
- ODataPathSegment
previous segment info.
- identifier
- String
name of the segment.
- parenthesisExpression
- String
The section of the segment inside parentheses, or null if there was none.
Return Value
A collection of ODataPathSegment describing the given identifier