AppDomain::ClearPrivatePath Method
Note: This API is now obsolete. The non-obsolete alternative is PrivateBinPath.
Resets the path that specifies the location of private assemblies to the empty string ("").
Assembly: mscorlib (in mscorlib.dll)
[ObsoleteAttribute(L"AppDomain.ClearPrivatePath has been deprecated. Please investigate the use of AppDomainSetup.PrivateBinPath instead. http://go.microsoft.com/fwlink/?linkid=14202")] public: virtual void ClearPrivatePath() sealed
Implements
_AppDomain::ClearPrivatePath()| Exception | Condition |
|---|---|
| AppDomainUnloadedException | The operation is attempted on an unloaded application domain. |
The private path is a path relative to the base directory that the common language runtime searches to locate private assemblies.
For more information, see AppDomainSetup::PrivateBinPath.
The following code example demonstrates how to use the ClearPrivatePath method to remove all entries from the list of private paths to search when assemblies are loaded.
This method is now obsolete, and should not be used for new development.
using namespace System; using namespace System::Reflection; using namespace System::Security::Policy; //for evidence Object int main() { //Create evidence for new appdomain. Evidence^ adevidence = AppDomain::CurrentDomain->Evidence; //Create the new application domain. AppDomain^ domain = AppDomain::CreateDomain( "MyDomain", adevidence ); //Display the current relative search path. Console::WriteLine( "Relative search path is: {0}", domain->RelativeSearchPath ); //Append the relative path. String^ Newpath = "www.code.microsoft.com"; domain->AppendPrivatePath( Newpath ); //Display the new relative search path. Console::WriteLine( "Relative search path is: {0}", domain->RelativeSearchPath ); //Clear the private search path. domain->ClearPrivatePath(); //Display the new relative search path. Console::WriteLine( "Relative search path is now: {0}", domain->RelativeSearchPath ); AppDomain::Unload( domain ); }
.NET Framework
Supported in: 1.1, 1.0Obsolete (compiler warning) in 4
Obsolete (compiler warning) in 3.5
Obsolete (compiler warning) in 3.5 SP1
Obsolete (compiler warning) in 3.0
Obsolete (compiler warning) in 3.0 SP1
Obsolete (compiler warning) in 3.0 SP2
Obsolete (compiler warning) in 2.0
Obsolete (compiler warning) in 2.0 SP1
Obsolete (compiler warning) in 2.0 SP2
.NET Framework Client Profile
Obsolete (compiler warning) in 4Obsolete (compiler warning) in 3.5 SP1
- SecurityCriticalAttribute
Requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.