예제 #1
0
 protected ConnectedInfo(ConnectedInfo parent, string path) : this(path) {
     if (parent == null)
     {
         throw new ArgumentNullException("parent");
     }
     if (path == null)
     {
         throw new ArgumentNullException("path");
     }
     Connector = parent.Connector;
 }
예제 #2
0
파일: Info.cs 프로젝트: prantlf/SharePosh
 protected ConnectedInfo(ConnectedInfo parent, string path)
     : this(path)
 {
     if (parent == null)
         throw new ArgumentNullException("parent");
     if (path == null)
         throw new ArgumentNullException("path");
     Connector = parent.Connector;
 }