Example #1
0
 /// <summary>
 /// 构造函数。
 /// </summary>
 public GetHandler()
 {
     this.docSvr = WebDAVDocumentHandlerFacotry.Instance;
 }
 /// <summary>
 /// 构造函数。
 /// </summary>
 /// <param name="documentHandler"></param>
 private WebDAVDocumentHandlerFacotry(IWebDAVDocumentHandler documentHandler)
 {
     if (documentHandler == null)
         throw new ArgumentNullException("没有实现文档数据操作接口!");
     this.documentHandler = documentHandler;
 }