Partager via


VCWebServiceProxyGeneratorTool.Namespace, propriété

Obtient ou définit un objet spécifiant l'espace de noms parent.

Espace de noms :  Microsoft.VisualStudio.VCProjectEngine
Assembly :  Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)

Syntaxe

'Déclaration
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)

Valeur de propriété

Type : String
Chaîne spécifiant le nom de l'espace de noms.

Notes

Namespace doit correspondre à l'espace de noms racine du projet.

Dans de nombreux cas, la valeur d'Namespace est le même que le nom de la bibliothèque que vous encapsulez.

Exemples

Consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour savoir comment compiler et exécuter cet exemple.

' 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

Sécurité .NET Framework

Voir aussi

Référence

VCWebServiceProxyGeneratorTool Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms