VCWebServiceProxyGeneratorTool.Namespace 属性
获取或设置一个定义父命名空间的对象。
命名空间: Microsoft.VisualStudio.VCProjectEngine
程序集: Microsoft.VisualStudio.VCProjectEngine(在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
语法
声明
Property Namespace As String
string Namespace { get; set; }
property String^ Namespace {
String^ get ();
void set (String^ value);
}
abstract Namespace : string with get, set
function get Namespace () : String
function set Namespace (value : String)
属性值
类型:String
一个指定命名空间名称的字符串。
备注
Namespace 必须与项目的根命名空间。
在许多情况下,Namespace 的值相同。您包装库的名称。
示例
有关如何编译和运行该示例的信息,请参见 如何:编译项目模型扩展性示例代码。
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim prj As VCProject
Dim cfgs, tools As IVCCollection
Dim cfg As VCConfiguration
Dim tool As VCManagedWrapperGeneratorTool
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.Tools("VCManagedWrapperGeneratorTool")
MsgBox("Current namespace : " & _
tool.Namespace)
End Sub
End Module
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。