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>
)
參數
- directiveName
型別:System.String
指示詞的名稱。
- requiresArguments
型別:System.Collections.Generic.IDictionary<String, String>
指示詞處理器所需的標準參數。
- providesArguments
型別:System.Collections.Generic.IDictionary<String, String>
指示詞處理器提供的標準參數。
備註
由 ProcessDirective 呼叫。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。
請參閱
參考
RequiresProvidesDirectiveProcessor 類別