예제 #1
0
 /// <summary>
 /// ProcessRecord overload.
 /// </summary>
 protected override void ProcessRecord()
 {
     if (Path != null)
     {
         foreach (string path in Path)
         {
             _helper = new ImportXmlHelper(path, this, _isLiteralPath);
             _helper.Import();
         }
     }
 }
예제 #2
0
 protected override void ProcessRecord()
 {
     if (this._paths != null)
     {
         foreach (string str in this._paths)
         {
             this.helper = new ImportXmlHelper(str, this, this.isLiteralPath);
             this.helper.Import();
         }
     }
 }
예제 #3
0
 protected override void ProcessRecord()
 {
     if (this._paths != null)
     {
         foreach (string str in this._paths)
         {
             this.helper = new ImportXmlHelper(str, this, this.isLiteralPath);
             this.helper.Import();
         }
     }
 }
예제 #4
0
 public void Dispose()
 {
     if (!this.disposed)
     {
         GC.SuppressFinalize(this);
         if (this.helper != null)
         {
             this.helper.Dispose();
             this.helper = null;
         }
         this.disposed = true;
     }
 }
예제 #5
0
 public void Dispose()
 {
     if (!this.disposed)
     {
         GC.SuppressFinalize(this);
         if (this.helper != null)
         {
             this.helper.Dispose();
             this.helper = null;
         }
         this.disposed = true;
     }
 }
예제 #6
0
 /// <summary>
 /// ProcessRecord overload
 /// </summary>
 protected override void ProcessRecord()
 {
     if (Path != null)
     {
         foreach (string path in Path)
         {
             _helper = new ImportXmlHelper(path, this, _isLiteralPath);
             _helper.Import();
         }
     }
 }