StandardTableKeyNames.ProjectGuid Champ
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
ID du projet qui contient l’erreur.
public: System::String ^ ProjectGuid;
std::wstring ProjectGuid;
public const string ProjectGuid;
val mutable ProjectGuid : string
Public Const ProjectGuid As String
Valeur de champ
Remarques
Le type de données attendu est Guid; sinon, null
si l’erreur appartient à plusieurs projets.
Utilisez IVsSolution.GetGuidOfProject pour obtenir le GUID du projet à partir d’une IVsHierarchy.
Les performances seront améliorées si vous « prebox » votre Guid par, dans votre ITableEntry ou ITableEntriesSnapshot, ayant une variable membre :
private object boxedProjectGuid = projectGuid;
et renvoyant boxedProjectGuid au lieu de projectGuid.