// Summary:
 //     Creates a new stream object with its own seek pointer that references the
 //     same bytes as the original stream.
 //
 // Parameters:
 //   ppstm:
 //     When this method returns, contains the new stream object. This parameter
 //     is passed uninitialized.
 public void Clone(out IStream ppstm)
 {
     ppstm = new ReadOnlyIStreamWrapper(this._stream);
 }
Exemple #2
0
 // Summary:
 //     Creates a new stream object with its own seek pointer that references the
 //     same bytes as the original stream.
 //
 // Parameters:
 //   ppstm:
 //     When this method returns, contains the new stream object. This parameter
 //     is passed uninitialized.
 public void Clone(out IStream ppstm)
 {
     ppstm = new ReadOnlyIStreamWrapper(this._stream);
 }