Exemplo n.º 1
0
 /// <summary>Closes this input stream and releases any system resources associated with the stream.
 ///     </summary>
 /// <remarks>Closes this input stream and releases any system resources associated with the stream.
 ///     </remarks>
 /// <exception cref="System.IO.IOException">if a network error occurs</exception>
 public override void Close()
 {
     try
     {
         File.Close();
         _tmp = null;
     }
     catch (SmbException se)
     {
         throw SeToIoe(se);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Closes this output stream and releases any system resources associated
 /// with it.
 /// </summary>
 /// <remarks>
 /// Closes this output stream and releases any system resources associated
 /// with it.
 /// </remarks>
 /// <exception cref="System.IO.IOException">if a network error occurs</exception>
 public override void Close()
 {
     _file.Close();
     _tmp = null;
 }
Exemplo n.º 3
0
 /// <exception cref="WinrtCifs.Smb.SmbException"></exception>
 public virtual void Close()
 {
     _file.Close();
 }