次の方法で共有


RouteTemplate コンストラクター

定義

オーバーロード

RouteTemplate(RoutePattern)

指定された新 RouteTemplate しいインスタンスを構築します other

RouteTemplate(String, List<TemplateSegment>)

文字列と のリストsegmentsを指定してtemplate、新しいRouteTemplateインスタンスを構築します。 ルート テンプレートのパラメーターを計算します。

RouteTemplate(RoutePattern)

ソース:
RouteTemplate.cs
ソース:
RouteTemplate.cs

指定された新 RouteTemplate しいインスタンスを構築します other

public:
 RouteTemplate(Microsoft::AspNetCore::Routing::Patterns::RoutePattern ^ other);
public RouteTemplate (Microsoft.AspNetCore.Routing.Patterns.RoutePattern other);
new Microsoft.AspNetCore.Routing.Template.RouteTemplate : Microsoft.AspNetCore.Routing.Patterns.RoutePattern -> Microsoft.AspNetCore.Routing.Template.RouteTemplate
Public Sub New (other As RoutePattern)

パラメーター

other
RoutePattern

RoutePattern のインスタンス。

適用対象

RouteTemplate(String, List<TemplateSegment>)

ソース:
RouteTemplate.cs
ソース:
RouteTemplate.cs
ソース:
RouteTemplate.cs

文字列と のリストsegmentsを指定してtemplate、新しいRouteTemplateインスタンスを構築します。 ルート テンプレートのパラメーターを計算します。

public:
 RouteTemplate(System::String ^ template, System::Collections::Generic::List<Microsoft::AspNetCore::Routing::Template::TemplateSegment ^> ^ segments);
public RouteTemplate (string template, System.Collections.Generic.List<Microsoft.AspNetCore.Routing.Template.TemplateSegment> segments);
new Microsoft.AspNetCore.Routing.Template.RouteTemplate : string * System.Collections.Generic.List<Microsoft.AspNetCore.Routing.Template.TemplateSegment> -> Microsoft.AspNetCore.Routing.Template.RouteTemplate
Public Sub New (template As String, segments As List(Of TemplateSegment))

パラメーター

template
String

ルート テンプレートの文字列表現。

segments
List<TemplateSegment>

TemplateSegment の一覧。

適用対象