AppDomainSetup.DisallowCodeDownload Property
.NET Framework 2.0
Gets or sets a value indicating whether HTTP download of assemblies is allowed for an application domain.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
/** @property */ public boolean get_DisallowCodeDownload () /** @property */ public void set_DisallowCodeDownload (boolean value)
public function get DisallowCodeDownload () : boolean public function set DisallowCodeDownload (value : boolean)
Property Value
true if HTTP download of assemblies is to be disallowed; otherwise, it is allowed.The DisallowCodeDownload property is designed to be used by services and server applications where downloading code from an intranet or the Internet is not part of the application scenario.
Caution |
|---|
| The default value for the DisallowCodeDownload property is false. This setting is unsafe for services. To help prevent services from downloading partially trusted code, set this property to true. |
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show:
Caution