Clear() public méthode

Releases all of the data associated with the I/O Sessions.
public Clear ( ) : void
Résultat void
 /// <summary>
 /// Sets the current usage of the <see cref="BinaryStreamIoSessionBase"/> to null.
 /// </summary>
 public override void Clear()
 {
     if (IsDisposed || m_ioSessions.IsDisposed)
     {
         throw new ObjectDisposedException(GetType().FullName);
     }
     m_ioSessions.Clear();
 }