ITextTemplatingEngineHost.StandardImports 属性
获取命名空间的列表。
命名空间: Microsoft.VisualStudio.TextTemplating
程序集: Microsoft.VisualStudio.TextTemplating.Interfaces.10.0(在 Microsoft.VisualStudio.TextTemplating.Interfaces.10.0.dll 中)
语法
声明
ReadOnly Property StandardImports As IList(Of String)
IList<string> StandardImports { get; }
property IList<String^>^ StandardImports {
IList<String^>^ get ();
}
abstract StandardImports : IList<string>
function get StandardImports () : IList<String>
属性值
类型:System.Collections.Generic.IList<String>
一个 IList,其中包含命名空间。
备注
允许主机指定由生成的转换类(例如 System)导入的命名空间。 该引擎将这些语句添加到生成的转换类。
示例
下面的代码示例演示了自定义主机的可能实现。 此代码示例摘自一个更大的示例。 有关完整的示例,请参见演练:创建自定义文本模板宿主。
public IList<string> StandardImports
{
get
{
return new string[]
{
"System"
};
}
}
Public ReadOnly Property StandardImports() As IList(Of String) Implements Microsoft.VisualStudio.TextTemplating.ITextTemplatingEngineHost.StandardImports
Get
Return New String() {"System"}
End Get
End Property
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualStudio.TextTemplating 命名空间