AttributeRouteModel.ReplaceTokens メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ReplaceTokens(String, IDictionary<String,String>) |
テンプレート内のトークンを指定された値に置き換えます。 |
ReplaceTokens(String, IDictionary<String,String>, IOutboundParameterTransformer) |
テンプレート内のトークンを指定された値とルート トークン トランスフォーマーに置き換えます。 |
ReplaceTokens(String, IDictionary<String,String>)
テンプレート内のトークンを指定された値に置き換えます。
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)
テンプレート内のトークンを指定された値とルート トークン トランスフォーマーに置き換えます。
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
ルート トークン トランスフォーマー。
戻り値
置換された値を含む新しい文字列。