Sdílet prostřednictvím


RequiresProvidesDirectiveProcessor.PostProcessArguments – metoda

Při přepsání v odvozené třídě umožňuje provádět změny parametrů, které poskytují a vyžadují odvozené třídy.

Obor názvů:  Microsoft.VisualStudio.TextTemplating
Sestavení:  Microsoft.VisualStudio.TextTemplating.12.0 (v Microsoft.VisualStudio.TextTemplating.12.0.dll)

Syntaxe

'Deklarace
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>
)

Parametry

  • directiveName
    Typ: String

    Název směrnice

  • requiresArguments
    Typ: IDictionary<String, String>

    Standardní parametry, které vyžaduje procesor směrnice.

  • providesArguments
    Typ: IDictionary<String, String>

    Standardní parametry, které poskytuje procesor směrnice.

Poznámky

Volat ProcessDirective.

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

RequiresProvidesDirectiveProcessor Třída

Microsoft.VisualStudio.TextTemplating – obor názvů

InitializeProvidesDictionary

InitializeRequiresDictionary

ProcessDirective