码迷,mamicode.com
首页 >  
搜索关键字:appdomain    ( 269个结果
C# 写日志的方法
public void WriteLog(string msg) { string filePath = AppDomain.CurrentDomain.BaseDirectory + "Log"; if (!Directory.Exists(filePath)) { Directory.Creat ...
分类:Windows程序   时间:2017-08-30 19:44:20    阅读次数:226
获取物理路径相关
1、MVC网站:AppDomain.CurrentDomain.BaseDirectory 2、定时Job获取当前Job所在路径: ...
分类:其他好文   时间:2017-08-17 18:38:07    阅读次数:168
C# 获取程序运行时路径
Ø 前言 开发中,很多时候都需要获取程序运行时路径,比如:反射、文件操作等。.NET Framework 已经封装了这些功能,可以很方便的使用。 1. 可使用类 1. System.AppDomain,程序集:mscorlib.dll。 2. System.Environment,程序集:mscor... ...
分类:Windows程序   时间:2017-08-03 12:39:29    阅读次数:319
基于AppDomain的"插件式"开发
很多时候,我们都想使用(开发)USB式(热插拔)的应用,例如,开发一个WinForm应用,并且这个WinForm应用能允许开发人员定制扩展插件,又例如,我们可能维护着一个WinService管理系统,这个WinService系统管理的形形色色各种各样的服务,这些服务也是各个"插件式"的类库,例如: ...
分类:移动开发   时间:2017-07-26 18:10:44    阅读次数:322
assembly 需要 unload 和 update 的时候怎么办?
我正在开发公司的业务组件平台,组件池的灵活性要求很高,业务组件都是可以立即更新和及时装配的;目前完成这些功能,有待测试.用appDomain.unload 拆卸assembly 可以,只是用起来比较麻烦;相关的文章很多;这里给出一个具体例子;有三个工程;1.UnLoadAssembly ,测试2.C ...
分类:其他好文   时间:2017-07-24 14:44:34    阅读次数:118
C#原生压缩和解压缩方法
string path = AppDomain.CurrentDomain.BaseDirectory; string startPath = @"c:\Client"; string zipPath = @"c:\Client.zip"; string extractPath = @"c:\Cli... ...
分类:Windows程序   时间:2017-07-23 22:49:14    阅读次数:211
使用 JointCode.Shuttle 动态注册 / 注销服务
JointCode.Shuttle 是一个用于进程内 AppDomain 间通信的服务架构(不支持跨进程)。 本文将介绍如何使用 JointCode.Shuttle 在运行时动态注册 / 注销服务。 假设我们有一个服务契约 A,使用 JointCode.Shuttle,我们可以在运行时: 我为此写了 ...
分类:其他好文   时间:2017-07-20 15:26:41    阅读次数:137
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
JointCode.Shuttle 是一个用于进程内 AppDomain 间通信的服务架构(不支持跨进程)。 本文主要介绍如何通过 JointCode.Shuttle 访问任意 AppDomain 的服务。 当我们要进行跨 AppDomain 调用时,一般我们会让需要跨 AppDomain 操作的类 ...
分类:移动开发   时间:2017-07-20 15:11:10    阅读次数:287
使用 JointCode.Shuttle 管理远程服务对象的生命期
JointCode.Shuttle 是一个用于进程内 AppDomain 间通信的服务架构(不支持跨进程)。 一般情况下,在进行跨 AppDomain 调用时,大部分人选择使用运行时库默认提供的、基于 MarshalByrefObject 类继承的通信机制。代码也很简单,例如: 使用这种方式来调用远 ...
分类:其他好文   时间:2017-07-20 14:16:46    阅读次数:178
使用 JointCode.Shuttle 进行跨 AppDomain 通信的一个简单示例
JointCode.Shuttle 是一个用于进程内 AppDomain 间通信的服务架构(不支持跨进程)。 本文通过一个简单的示例来演示如何使用 JointCode.Shuttle。 JointCode.Shuttle 的发行包 在 JointCode.Shuttle 的发行包中,包含两个文件:J ...
分类:移动开发   时间:2017-07-17 20:13:29    阅读次数:332
269条   上一页 1 ... 8 9 10 11 12 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!