AddIn.SatelliteDllPath Property
Gets the location of a DLL containing localized resources, if available.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property SatelliteDllPath As String
string SatelliteDllPath { get; }
property String^ SatelliteDllPath {
String^ get ();
}
abstract SatelliteDllPath : string with get
function get SatelliteDllPath () : String
Property Value
Type: System.String
A string representing the path of a DLL containing localized resources.
Remarks
A satellite DLL file can be used by an add-in for additional or localized resources.
Examples
Sub SatelliteDLLPathExample()
' Set object references.
Dim addincoll As AddIns
Dim addinobj As AddIn
addincoll = DTE.AddIns
addinobj = addincoll.Item(1)
' Connect the add-in if it is not already connected
' and list its SatelliteDLLPath and Guid.
If addinobj.Connected = False Then
addinobj.Connected = True
End If
MsgBox("Satellite DLL Path: " & addinobj.SatelliteDllPath)
MsgBox("DLL GUID: " & addinobj.Guid)
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.