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 Класс