Metodo RequiresProvidesDirectiveProcessor.PostProcessArguments
Una volta sottoposto a override in una classe derivata, consente alle classi derivate apportino tutte le modifiche ai parametri che forniscono e richiedono.
Spazio dei nomi: Microsoft.VisualStudio.TextTemplating
Assembly: Microsoft.VisualStudio.TextTemplating.11.0 (in Microsoft.VisualStudio.TextTemplating.11.0.dll)
Sintassi
'Dichiarazione
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>
)
Parametri
- directiveName
Tipo: System.String
Il nome della direttiva.
- requiresArguments
Tipo: System.Collections.Generic.IDictionary<String, String>
i parametri standard che il processore di direttiva richiede.
- providesArguments
Tipo: System.Collections.Generic.IDictionary<String, String>
I parametri standard che il processore di direttiva.
Note
Chiamato da l ProcessDirective.
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
RequiresProvidesDirectiveProcessor Classe