Jaa


ODataPathTemplate Constructors

Definition

Overloads

ODataPathTemplate(ODataSegmentTemplate[])

Initializes a new instance of the ODataPathTemplate class.

ODataPathTemplate(IEnumerable<ODataSegmentTemplate>)

Initializes a new instance of the ODataPathTemplate class.

ODataPathTemplate(IList<ODataSegmentTemplate>)

Initializes a new instance of the ODataPathTemplate class.

ODataPathTemplate(ODataSegmentTemplate[])

Initializes a new instance of the ODataPathTemplate class.

public ODataPathTemplate (params Microsoft.AspNetCore.OData.Routing.Template.ODataSegmentTemplate[] segments);
new Microsoft.AspNetCore.OData.Routing.Template.ODataPathTemplate : Microsoft.AspNetCore.OData.Routing.Template.ODataSegmentTemplate[] -> Microsoft.AspNetCore.OData.Routing.Template.ODataPathTemplate
Public Sub New (ParamArray segments As ODataSegmentTemplate())

Parameters

segments
ODataSegmentTemplate[]

The path segment templates for the path.

Applies to

ODataPathTemplate(IEnumerable<ODataSegmentTemplate>)

Initializes a new instance of the ODataPathTemplate class.

public ODataPathTemplate (System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.OData.Routing.Template.ODataSegmentTemplate> segments);
new Microsoft.AspNetCore.OData.Routing.Template.ODataPathTemplate : seq<Microsoft.AspNetCore.OData.Routing.Template.ODataSegmentTemplate> -> Microsoft.AspNetCore.OData.Routing.Template.ODataPathTemplate
Public Sub New (segments As IEnumerable(Of ODataSegmentTemplate))

Parameters

segments
IEnumerable<ODataSegmentTemplate>

The path segment templates for the path.

Applies to

ODataPathTemplate(IList<ODataSegmentTemplate>)

Initializes a new instance of the ODataPathTemplate class.

public ODataPathTemplate (System.Collections.Generic.IList<Microsoft.AspNetCore.OData.Routing.Template.ODataSegmentTemplate> segments);
new Microsoft.AspNetCore.OData.Routing.Template.ODataPathTemplate : System.Collections.Generic.IList<Microsoft.AspNetCore.OData.Routing.Template.ODataSegmentTemplate> -> Microsoft.AspNetCore.OData.Routing.Template.ODataPathTemplate
Public Sub New (segments As IList(Of ODataSegmentTemplate))

Parameters

segments
IList<ODataSegmentTemplate>

The path segments for the path.

Applies to