RequiresProvidesDirectiveProcessor.PostProcessArguments メソッド
派生クラスでオーバーライドされた場合、派生クラスが提供および要求するパラメーターをそのクラスで変更できるようにします。
名前空間: Microsoft.VisualStudio.TextTemplating
アセンブリ: Microsoft.VisualStudio.TextTemplating.10.0 (Microsoft.VisualStudio.TextTemplating.10.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 クラス