AttributeRouteModel.ReplaceTokens 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
ReplaceTokens(String, IDictionary<String,String>) |
템플릿의 토큰을 제공된 값으로 바꿉니다. |
ReplaceTokens(String, IDictionary<String,String>, IOutboundParameterTransformer) |
템플릿의 토큰을 제공된 값 및 경로 토큰 변환기로 바꿉니다. |
ReplaceTokens(String, IDictionary<String,String>)
- Source:
- AttributeRouteModel.cs
- Source:
- AttributeRouteModel.cs
- Source:
- AttributeRouteModel.cs
템플릿의 토큰을 제공된 값으로 바꿉니다.
public:
static System::String ^ ReplaceTokens(System::String ^ template, System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ values);
public static string ReplaceTokens (string template, System.Collections.Generic.IDictionary<string,string> values);
public static string ReplaceTokens (string template, System.Collections.Generic.IDictionary<string,string?> values);
static member ReplaceTokens : string * System.Collections.Generic.IDictionary<string, string> -> string
Public Shared Function ReplaceTokens (template As String, values As IDictionary(Of String, String)) As String
매개 변수
- template
- String
템플릿입니다.
- values
- IDictionary<String,String>
사용할 토큰 값입니다.
반환
대체된 값이 있는 새 문자열입니다.
적용 대상
ReplaceTokens(String, IDictionary<String,String>, IOutboundParameterTransformer)
- Source:
- AttributeRouteModel.cs
- Source:
- AttributeRouteModel.cs
템플릿의 토큰을 제공된 값 및 경로 토큰 변환기로 바꿉니다.
public:
static System::String ^ ReplaceTokens(System::String ^ template, System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ values, Microsoft::AspNetCore::Routing::IOutboundParameterTransformer ^ routeTokenTransformer);
public static string ReplaceTokens (string template, System.Collections.Generic.IDictionary<string,string> values, Microsoft.AspNetCore.Routing.IOutboundParameterTransformer routeTokenTransformer);
public static string ReplaceTokens (string template, System.Collections.Generic.IDictionary<string,string?> values, Microsoft.AspNetCore.Routing.IOutboundParameterTransformer? routeTokenTransformer);
static member ReplaceTokens : string * System.Collections.Generic.IDictionary<string, string> * Microsoft.AspNetCore.Routing.IOutboundParameterTransformer -> string
Public Shared Function ReplaceTokens (template As String, values As IDictionary(Of String, String), routeTokenTransformer As IOutboundParameterTransformer) As String
매개 변수
- template
- String
템플릿입니다.
- values
- IDictionary<String,String>
사용할 토큰 값입니다.
- routeTokenTransformer
- IOutboundParameterTransformer
경로 토큰 변환기입니다.
반환
대체된 값이 있는 새 문자열입니다.