码迷,mamicode.com
首页 >  
搜索关键字:appdomain    ( 269个结果
NET Remoting 示例
.NET Remoting是.NET平台上允许存在于不同应用程序域中的对象相互知晓对方并进行通讯的基础设施。调用对象被称为客户端,而被调用对象则被称为服务器或者服务器对象。简而言之,它就是.NET平台上实现分布式对象系统的框架。只要是跨越AppDomain的访问,都属于Remoting。Remot....
分类:Web程序   时间:2014-12-18 18:32:17    阅读次数:204
.net 获取AppDomain创建了多少
partial class HttpBrowser { public static string IsolateCall(PageContentHandler pHandler) { Contract.Requires(pHandler != ...
分类:移动开发   时间:2014-12-16 19:09:35    阅读次数:197
IIS中,当文件夹被删除时,防止应用程序重启的解决办法
如果你曾经修改了ASP.NET应用程序(dll文件),与修改了bin文件夹或Web.config文件(添加/删除/重命名的文件等),而该网 站在运行,你可能已经注意到,这将导致在AppDomain的重新启动。所有的会话状态会丢失和网站再次成功启动,任何登录的用户将被退出(假设你不使用 持久Cooki...
分类:其他好文   时间:2014-12-12 18:59:32    阅读次数:155
Lucence.Net学习+盘古分词
创建索引库 //读取文件,存储到索引库 public string CreateDatebase() { //获取索引库的路径 var indexPath = AppDomain.CurrentDomain.BaseDirectory + Configurat...
分类:Web程序   时间:2014-12-02 19:08:19    阅读次数:187
[整]C#获得程序路径
// 获取程序的基目录。 System.AppDomain.CurrentDomain.BaseDirectory // 获取模块的完整路径。 System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName // ...
分类:Windows程序   时间:2014-11-25 15:49:20    阅读次数:249
几种方法如何获得绝对路径
1、取得控制台应用程序的根目录方法 方法1、Environment.CurrentDirectory 取得或设置当前工作目录的完整限定路径 方法2、AppDomain.CurrentDomain.BaseDirectory 获取基目录,它由程序集冲突解决程序用来探测程序集 2、取得W...
分类:其他好文   时间:2014-11-22 10:35:22    阅读次数:171
asp.net 获取当前项目路径
方法一://获取当前项目的路径System.AppDomain.CurrentDomain.BaseDirectory.ToString(); // 得到的是当前项目的根目录取的值:F://Project//System2.0//SystemForm//方法二://获取当前项目的路径//Server...
分类:Web程序   时间:2014-11-17 17:41:56    阅读次数:162
代码片段
获取当前目录 var a = AppDomain.CurrentDomain.BaseDirectory; var c = Directory.GetCurrentDirectory(); Directory.SetCurrentDi...
分类:其他好文   时间:2014-11-15 10:01:21    阅读次数:149
获取和设置包括该应用程序的目录的名称
copy /Y "$(TargetDir)$(ProjectName).dll" "$(SolutionDir)PluginMvcWeb\Bin\"// 获取程序的基目录。System.AppDomain.CurrentDomain.BaseDirectory@System.AppDomain.Cu...
分类:其他好文   时间:2014-11-11 15:46:49    阅读次数:299
图片-二进制之间的转换
一、图片转换二进制public byte[] GetPictureData() { string path = System.AppDomain.CurrentDomain.BaseDirectory; //获取程序的基目录 path += "\\PrintImag...
分类:其他好文   时间:2014-11-10 19:20:17    阅读次数:209
269条   上一页 1 ... 21 22 23 24 25 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!