RequiresProvidesDirectiveProcessor.PostProcessArguments 方法

在派生类中重写时,允许派生类对其提供和需要的参数进行任意修改。

命名空间:  Microsoft.VisualStudio.TextTemplating
程序集:  Microsoft.VisualStudio.TextTemplating.11.0(在 Microsoft.VisualStudio.TextTemplating.11.0.dll 中)

语法

声明
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>
)

参数

备注

ProcessDirective 调用。

.NET Framework 安全性

请参见

参考

RequiresProvidesDirectiveProcessor 类

Microsoft.VisualStudio.TextTemplating 命名空间

InitializeProvidesDictionary

InitializeRequiresDictionary

ProcessDirective