ExpandSegment.PathHasFilter Method
A Boolean value that indicates whether the path includes a filter option on target data.
Namespace: System.Data.Services
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Shared Function PathHasFilter ( _
path As IEnumerable(Of ExpandSegment) _
) As Boolean
'Usage
Dim path As IEnumerable(Of ExpandSegment)
Dim returnValue As Boolean
returnValue = ExpandSegment.PathHasFilter(path)
public static bool PathHasFilter(
IEnumerable<ExpandSegment> path
)
public:
static bool PathHasFilter(
IEnumerable<ExpandSegment^>^ path
)
static member PathHasFilter :
path:IEnumerable<ExpandSegment> -> bool
public static function PathHasFilter(
path : IEnumerable<ExpandSegment>
) : boolean
Parameters
- path
Type: System.Collections.Generic.IEnumerable<ExpandSegment>
The enumeration of segments to check for filters.
Return Value
Type: System.Boolean
True if any of the segments in the path has a filter; false otherwise.