AppDomain.RelativeSearchPath Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the path under the base directory where the assembly resolver should probe for private assemblies.
public:
property System::String ^ RelativeSearchPath { System::String ^ get(); };
public string? RelativeSearchPath { get; }
public string RelativeSearchPath { get; }
member this.RelativeSearchPath : string
Public ReadOnly Property RelativeSearchPath As String
Property Value
The path under the base directory where the assembly resolver should probe for private assemblies.
Implements
Exceptions
The operation is attempted on an unloaded application domain.
Remarks
Private assemblies are deployed in the same directory structure as the application. If the path specified by the RelativeSearchPath property is not under AppDomainSetup.ApplicationBase, it is ignored.
This property returns the value set using AppDomainSetup.PrivateBinPath.