When overridden in a derived class, allows derived classes to make any modifications to the parameters that they provide and require.
Namespace: Microsoft.VisualStudio.TextTemplating
Assembly: Microsoft.VisualStudio.TextTemplating (in Microsoft.VisualStudio.TextTemplating.dll)
Syntax
'宣言
Protected Overridable Sub PostProcessArguments ( _
directiveName As String, _
requiresArguments As IDictionary(Of String, String), _
providesArguments As IDictionary(Of String, String) _
)
'使用
Dim directiveName As String
Dim requiresArguments As IDictionary(Of String, String)
Dim providesArguments As IDictionary(Of String, String)
Me.PostProcessArguments(directiveName, _
requiresArguments, providesArguments)
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
)
protected function PostProcessArguments(
directiveName : String,
requiresArguments : IDictionary<String, String>,
providesArguments : IDictionary<String, String>
)
Parameters
directiveName
Type: System.StringThe name of the directive.
requiresArguments
Type: System.Collections.Generic.IDictionary<String, String>The standard parameters that the directive processor requires.
providesArguments
Type: System.Collections.Generic.IDictionary<String, String>The standard parameters that the directive processor provides.
Remarks
Called by ProcessDirective.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
RequiresProvidesDirectiveProcessor Class
RequiresProvidesDirectiveProcessor Members