Gets or sets the non-default resource .dll location.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Syntax
'宣言
Public Property SatellitePath As String
'使用
Dim instance As PackageRegistrationAttribute
Dim value As String
value = instance.SatellitePath
instance.SatellitePath = value
public string SatellitePath { get; set; }
public:
property String^ SatellitePath {
String^ get ();
void set (String^ value);
}
public function get SatellitePath () : String
public function set SatellitePath (value : String)
Property Value
Type: System.String
The non-default resource .dll location.
Remarks
Set this attribute to specify a resource .dll located in a non-default location. The .dll should be located at the following path: SatellitePath\lcid\PackageDllNameUI.dll. This attribute can be useful if your package is installed in the GAC. If this attribute is not set, the directory where the package is located will be used.
Permissions
- 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.
See Also
Reference
PackageRegistrationAttribute Class