RequiresProvidesDirectiveProcessor.PostProcessArguments, méthode
En cas de substitution dans une classe dérivée, permet aux classes dérivées de modifier les paramètres qu'elles fournissent et dont elles ont besoin.
Espace de noms : Microsoft.VisualStudio.TextTemplating
Assembly : Microsoft.VisualStudio.TextTemplating.10.0 (dans Microsoft.VisualStudio.TextTemplating.10.0.dll)
Syntaxe
'Déclaration
Protected Overridable Sub PostProcessArguments ( _
directiveName As String, _
requiresArguments As IDictionary(Of String, String), _
providesArguments As IDictionary(Of String, String) _
)
protected virtual void PostProcessArguments(
string directiveName,
IDictionary<string, string> requiresArguments,
IDictionary<string, string> providesArguments
)
protected:
virtual void PostProcessArguments(
String^ directiveName,
IDictionary<String^, String^>^ requiresArguments,
IDictionary<String^, String^>^ providesArguments
)
abstract PostProcessArguments :
directiveName:string *
requiresArguments:IDictionary<string, string> *
providesArguments:IDictionary<string, string> -> unit
override PostProcessArguments :
directiveName:string *
requiresArguments:IDictionary<string, string> *
providesArguments:IDictionary<string, string> -> unit
protected function PostProcessArguments(
directiveName : String,
requiresArguments : IDictionary<String, String>,
providesArguments : IDictionary<String, String>
)
Paramètres
- directiveName
Type : System.String
Nom de la directive.
- requiresArguments
Type : System.Collections.Generic.IDictionary<String, String>
Paramètres standard requis par le processeur de directive.
- providesArguments
Type : System.Collections.Generic.IDictionary<String, String>
Paramètres standard fournis par le processeur de directive.
Notes
Appelée par ProcessDirective.
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
RequiresProvidesDirectiveProcessor Classe