Share via


RoutePatternFactory.Segment Method

Definition

Overloads

Segment(IEnumerable<RoutePatternPart>)

Creates a RoutePatternPathSegment from the provided collection of parts.

Segment(RoutePatternPart[])

Creates a RoutePatternPathSegment from the provided collection of parts.

Segment(IEnumerable<RoutePatternPart>)

Source:
RoutePatternFactory.cs
Source:
RoutePatternFactory.cs

Creates a RoutePatternPathSegment from the provided collection of parts.

public:
 static Microsoft::AspNetCore::Routing::Patterns::RoutePatternPathSegment ^ Segment(System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Routing::Patterns::RoutePatternPart ^> ^ parts);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment Segment (System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPart> parts);
static member Segment : seq<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPart> -> Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment
Public Shared Function Segment (parts As IEnumerable(Of RoutePatternPart)) As RoutePatternPathSegment

Parameters

parts
IEnumerable<RoutePatternPart>

The collection of parts.

Returns

The RoutePatternPathSegment.

Applies to

Segment(RoutePatternPart[])

Source:
RoutePatternFactory.cs
Source:
RoutePatternFactory.cs

Creates a RoutePatternPathSegment from the provided collection of parts.

public:
 static Microsoft::AspNetCore::Routing::Patterns::RoutePatternPathSegment ^ Segment(... cli::array <Microsoft::AspNetCore::Routing::Patterns::RoutePatternPart ^> ^ parts);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment Segment (params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPart[] parts);
static member Segment : Microsoft.AspNetCore.Routing.Patterns.RoutePatternPart[] -> Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment
Public Shared Function Segment (ParamArray parts As RoutePatternPart()) As RoutePatternPathSegment

Parameters

parts
RoutePatternPart[]

The collection of parts.

Returns

The RoutePatternPathSegment.

Applies to