AppDomain.RelativeSearchPath Property

Definition

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.

Applies to

See also