RoutePatternFactory.Pattern 메서드

정의

오버로드

Pattern(Object, Object, RoutePatternPathSegment[])

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

Pattern(RoutePatternPathSegment[])

세그먼트 컬렉션에서 의 RoutePattern 새 instance 만듭니다.

Pattern(IEnumerable<RoutePatternPathSegment>)

세그먼트 컬렉션에서 의 RoutePattern 새 instance 만듭니다.

Pattern(String, RoutePatternPathSegment[])

세그먼트 컬렉션에서 의 RoutePattern 새 instance 만듭니다.

Pattern(String, IEnumerable<RoutePatternPathSegment>)

세그먼트 컬렉션에서 의 RoutePattern 새 instance 만듭니다.

Pattern(RouteValueDictionary, RouteValueDictionary, RoutePatternPathSegment[])

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

Pattern(RouteValueDictionary, RouteValueDictionary, IEnumerable<RoutePatternPathSegment>)

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

Pattern(Object, Object, IEnumerable<RoutePatternPathSegment>)

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

Pattern(String, RouteValueDictionary, RouteValueDictionary, RoutePatternPathSegment[])

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

Pattern(String, RouteValueDictionary, RouteValueDictionary, IEnumerable<RoutePatternPathSegment>)

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

Pattern(String, Object, Object, RoutePatternPathSegment[])

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

Pattern(String, Object, Object, IEnumerable<RoutePatternPathSegment>)

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

Pattern(Object, Object, RoutePatternPathSegment[])

Source:
RoutePatternFactory.cs
Source:
RoutePatternFactory.cs

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

public:
 static Microsoft::AspNetCore::Routing::Patterns::RoutePattern ^ Pattern(System::Object ^ defaults, System::Object ^ parameterPolicies, ... cli::array <Microsoft::AspNetCore::Routing::Patterns::RoutePatternPathSegment ^> ^ segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (object defaults, object parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (object? defaults, object? parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] segments);
static member Pattern : obj * obj * Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern
Public Shared Function Pattern (defaults As Object, parameterPolicies As Object, ParamArray segments As RoutePatternPathSegment()) As RoutePattern

매개 변수

defaults
Object

경로 패턴과 연결된 추가 기본값입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다.

parameterPolicies
Object

경로 패턴과 연결된 추가 매개 변수 정책입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다. 컬렉션을 값으로 제공하여 키에 대해 여러 정책을 지정할 수 있습니다.

segments
RoutePatternPathSegment[]

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(RoutePatternPathSegment[])

Source:
RoutePatternFactory.cs
Source:
RoutePatternFactory.cs

세그먼트 컬렉션에서 의 RoutePattern 새 instance 만듭니다.

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

매개 변수

segments
RoutePatternPathSegment[]

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(IEnumerable<RoutePatternPathSegment>)

Source:
RoutePatternFactory.cs
Source:
RoutePatternFactory.cs

세그먼트 컬렉션에서 의 RoutePattern 새 instance 만듭니다.

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

매개 변수

segments
IEnumerable<RoutePatternPathSegment>

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(String, RoutePatternPathSegment[])

Source:
RoutePatternFactory.cs
Source:
RoutePatternFactory.cs

세그먼트 컬렉션에서 의 RoutePattern 새 instance 만듭니다.

public:
 static Microsoft::AspNetCore::Routing::Patterns::RoutePattern ^ Pattern(System::String ^ rawText, ... cli::array <Microsoft::AspNetCore::Routing::Patterns::RoutePatternPathSegment ^> ^ segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (string rawText, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] segments);
static member Pattern : string * Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern
Public Shared Function Pattern (rawText As String, ParamArray segments As RoutePatternPathSegment()) As RoutePattern

매개 변수

rawText
String

경로 패턴과 연결할 원시 텍스트입니다. null일 수 있습니다.

segments
RoutePatternPathSegment[]

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(String, IEnumerable<RoutePatternPathSegment>)

Source:
RoutePatternFactory.cs
Source:
RoutePatternFactory.cs

세그먼트 컬렉션에서 의 RoutePattern 새 instance 만듭니다.

public:
 static Microsoft::AspNetCore::Routing::Patterns::RoutePattern ^ Pattern(System::String ^ rawText, System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Routing::Patterns::RoutePatternPathSegment ^> ^ segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (string rawText, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (string? rawText, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> segments);
static member Pattern : string * seq<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern
Public Shared Function Pattern (rawText As String, segments As IEnumerable(Of RoutePatternPathSegment)) As RoutePattern

매개 변수

rawText
String

경로 패턴과 연결할 원시 텍스트입니다. null일 수 있습니다.

segments
IEnumerable<RoutePatternPathSegment>

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(RouteValueDictionary, RouteValueDictionary, RoutePatternPathSegment[])

Source:
RoutePatternFactory.cs

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] segments);
static member Pattern : Microsoft.AspNetCore.Routing.RouteValueDictionary * Microsoft.AspNetCore.Routing.RouteValueDictionary * Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern
Public Shared Function Pattern (defaults As RouteValueDictionary, parameterPolicies As RouteValueDictionary, ParamArray segments As RoutePatternPathSegment()) As RoutePattern

매개 변수

defaults
RouteValueDictionary

경로 패턴과 연결된 추가 기본값입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다.

parameterPolicies
RouteValueDictionary

경로 패턴과 연결된 추가 매개 변수 정책입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다. 컬렉션을 값으로 제공하여 키에 대해 여러 정책을 지정할 수 있습니다.

segments
RoutePatternPathSegment[]

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(RouteValueDictionary, RouteValueDictionary, IEnumerable<RoutePatternPathSegment>)

Source:
RoutePatternFactory.cs

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> segments);
static member Pattern : Microsoft.AspNetCore.Routing.RouteValueDictionary * Microsoft.AspNetCore.Routing.RouteValueDictionary * seq<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern
Public Shared Function Pattern (defaults As RouteValueDictionary, parameterPolicies As RouteValueDictionary, segments As IEnumerable(Of RoutePatternPathSegment)) As RoutePattern

매개 변수

defaults
RouteValueDictionary

경로 패턴과 연결된 추가 기본값입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다.

parameterPolicies
RouteValueDictionary

경로 패턴과 연결된 추가 매개 변수 정책입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다. 컬렉션을 값으로 제공하여 키에 대해 여러 정책을 지정할 수 있습니다.

segments
IEnumerable<RoutePatternPathSegment>

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(Object, Object, IEnumerable<RoutePatternPathSegment>)

Source:
RoutePatternFactory.cs
Source:
RoutePatternFactory.cs

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

public:
 static Microsoft::AspNetCore::Routing::Patterns::RoutePattern ^ Pattern(System::Object ^ defaults, System::Object ^ parameterPolicies, System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Routing::Patterns::RoutePatternPathSegment ^> ^ segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (object defaults, object parameterPolicies, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (object? defaults, object? parameterPolicies, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> segments);
static member Pattern : obj * obj * seq<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern
Public Shared Function Pattern (defaults As Object, parameterPolicies As Object, segments As IEnumerable(Of RoutePatternPathSegment)) As RoutePattern

매개 변수

defaults
Object

경로 패턴과 연결된 추가 기본값입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다.

parameterPolicies
Object

경로 패턴과 연결된 추가 매개 변수 정책입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다. 컬렉션을 값으로 제공하여 키에 대해 여러 정책을 지정할 수 있습니다.

segments
IEnumerable<RoutePatternPathSegment>

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(String, RouteValueDictionary, RouteValueDictionary, RoutePatternPathSegment[])

Source:
RoutePatternFactory.cs

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (string? rawText, Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] segments);
static member Pattern : string * Microsoft.AspNetCore.Routing.RouteValueDictionary * Microsoft.AspNetCore.Routing.RouteValueDictionary * Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern
Public Shared Function Pattern (rawText As String, defaults As RouteValueDictionary, parameterPolicies As RouteValueDictionary, ParamArray segments As RoutePatternPathSegment()) As RoutePattern

매개 변수

rawText
String

경로 패턴과 연결할 원시 텍스트입니다.

defaults
RouteValueDictionary

경로 패턴과 연결된 추가 기본값입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다.

parameterPolicies
RouteValueDictionary

경로 패턴과 연결된 추가 매개 변수 정책입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다. 컬렉션을 값으로 제공하여 키에 대해 여러 정책을 지정할 수 있습니다.

segments
RoutePatternPathSegment[]

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(String, RouteValueDictionary, RouteValueDictionary, IEnumerable<RoutePatternPathSegment>)

Source:
RoutePatternFactory.cs

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (string? rawText, Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> segments);
static member Pattern : string * Microsoft.AspNetCore.Routing.RouteValueDictionary * Microsoft.AspNetCore.Routing.RouteValueDictionary * seq<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern
Public Shared Function Pattern (rawText As String, defaults As RouteValueDictionary, parameterPolicies As RouteValueDictionary, segments As IEnumerable(Of RoutePatternPathSegment)) As RoutePattern

매개 변수

rawText
String

경로 패턴과 연결할 원시 텍스트입니다. null일 수 있습니다.

defaults
RouteValueDictionary

경로 패턴과 연결된 추가 기본값입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴으로 병합됩니다.

parameterPolicies
RouteValueDictionary

경로 패턴과 연결된 추가 매개 변수 정책입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴에 병합됩니다. 컬렉션을 값으로 제공하여 키에 대해 여러 정책을 지정할 수 있습니다.

segments
IEnumerable<RoutePatternPathSegment>

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(String, Object, Object, RoutePatternPathSegment[])

Source:
RoutePatternFactory.cs
Source:
RoutePatternFactory.cs

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

public:
 static Microsoft::AspNetCore::Routing::Patterns::RoutePattern ^ Pattern(System::String ^ rawText, System::Object ^ defaults, System::Object ^ parameterPolicies, ... cli::array <Microsoft::AspNetCore::Routing::Patterns::RoutePatternPathSegment ^> ^ segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (string rawText, object defaults, object parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (string? rawText, object? defaults, object? parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] segments);
static member Pattern : string * obj * obj * Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment[] -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern
Public Shared Function Pattern (rawText As String, defaults As Object, parameterPolicies As Object, ParamArray segments As RoutePatternPathSegment()) As RoutePattern

매개 변수

rawText
String

경로 패턴과 연결할 원시 텍스트입니다.

defaults
Object

경로 패턴과 연결된 추가 기본값입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴에 병합됩니다.

parameterPolicies
Object

경로 패턴과 연결된 추가 매개 변수 정책입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴에 병합됩니다. 컬렉션을 값으로 제공하여 키에 대해 여러 정책을 지정할 수 있습니다.

segments
RoutePatternPathSegment[]

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상

Pattern(String, Object, Object, IEnumerable<RoutePatternPathSegment>)

Source:
RoutePatternFactory.cs
Source:
RoutePatternFactory.cs

RoutePattern 제공된 기본값 및 매개 변수 정책과 함께 세그먼트 컬렉션에서 을 만듭니다.

public:
 static Microsoft::AspNetCore::Routing::Patterns::RoutePattern ^ Pattern(System::String ^ rawText, System::Object ^ defaults, System::Object ^ parameterPolicies, System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Routing::Patterns::RoutePatternPathSegment ^> ^ segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (string rawText, object defaults, object parameterPolicies, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> segments);
public static Microsoft.AspNetCore.Routing.Patterns.RoutePattern Pattern (string? rawText, object? defaults, object? parameterPolicies, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> segments);
static member Pattern : string * obj * obj * seq<Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment> -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern
Public Shared Function Pattern (rawText As String, defaults As Object, parameterPolicies As Object, segments As IEnumerable(Of RoutePatternPathSegment)) As RoutePattern

매개 변수

rawText
String

경로 패턴과 연결할 원시 텍스트입니다. null일 수 있습니다.

defaults
Object

경로 패턴과 연결된 추가 기본값입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴에 병합됩니다.

parameterPolicies
Object

경로 패턴과 연결된 추가 매개 변수 정책입니다. null일 수 있습니다. 제공된 개체는 를 사용하여 RouteValueDictionary 키-값 쌍으로 변환된 다음 경로 패턴에 병합됩니다. 컬렉션을 값으로 제공하여 키에 대해 여러 정책을 지정할 수 있습니다.

segments
IEnumerable<RoutePatternPathSegment>

세그먼트의 컬렉션입니다.

반환

RoutePattern

적용 대상