AttributeRouteModel.ReplaceTokens Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
ReplaceTokens(String, IDictionary<String,String>) |
Sostituisce i token nel modello con i valori specificati. |
ReplaceTokens(String, IDictionary<String,String>, IOutboundParameterTransformer) |
Sostituisce i token nel modello con i valori specificati e il trasformatore di token di route. |
ReplaceTokens(String, IDictionary<String,String>)
- Origine:
- AttributeRouteModel.cs
- Origine:
- AttributeRouteModel.cs
- Origine:
- AttributeRouteModel.cs
Sostituisce i token nel modello con i valori specificati.
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
Parametri
- template
- String
Modello.
- values
- IDictionary<String,String>
Valori del token da usare.
Restituisce
Nuova stringa con i valori sostituiti.
Si applica a
ReplaceTokens(String, IDictionary<String,String>, IOutboundParameterTransformer)
- Origine:
- AttributeRouteModel.cs
- Origine:
- AttributeRouteModel.cs
Sostituisce i token nel modello con i valori specificati e il trasformatore di token di route.
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
Parametri
- template
- String
Modello.
- values
- IDictionary<String,String>
Valori del token da usare.
- routeTokenTransformer
- IOutboundParameterTransformer
Trasformatore di token di route.
Restituisce
Nuova stringa con i valori sostituiti.