System.Web Namespace HttpRuntime Class
Gets the physical path to the directory where ASP.NET stores temporary files ( generated sources, compiled assemblies, and so on ) for the current application.
[ VB ]
Public Shared ReadOnly Property CodegenDir As String
[ C# ]
public static string CodegenDir {get;}
[ C++ ]
public: __property static String* get_CodegenDir ( );
[ JScript ]
public static function get CodegenDir ( ) : String;
The physical path to the application's temporary file storage directory.
.NET Framework Security:
- FileIOPermission for access to the information in the path itself. This protects sensitive information in the path, such as user names, as well as information about the directory structure revealed in the path. This value does not grant access to files or folders represented by the path. Associated enumeration: FileIOPermissionAccess.PathDiscovery
HttpRuntime Members