コード例 #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;
 }