_DTE.SatelliteDllPath, méthode
Retourne le chemin calculé à la DLL satellite lorsque le répertoire d'installation d'un complément ou d'un Assistant et le nom de fichier de la DLL contenant les ressources localisées sont spécifiés.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
Function SatelliteDllPath ( _
Path As String, _
Name As String _
) As String
string SatelliteDllPath(
string Path,
string Name
)
String^ SatelliteDllPath(
String^ Path,
String^ Name
)
abstract SatelliteDllPath :
Path:string *
Name:string -> string
function SatelliteDllPath(
Path : String,
Name : String
) : String
Paramètres
- Path
Type : System.String
Obligatoire.Indique le chemin d'accès complet au répertoire dans lequel est installé le complément ou l'Assistant.
- Name
Type : System.String
Obligatoire.Le nom de fichier de la bibliothèque DLL satellite ; par exemple, "MyAddinUI.DLL".
Valeur de retour
Type : System.String
Chaîne représentant le chemin d'accès calculé à la DLL satellite.
Exemples
Sub SatelliteDLLPathExample()
MsgBox(DTE.SatelliteDllPath("c:\program files\microsoft visual studio .net\common7\ide", "msenv.dll"))
End Sub
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.