You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Returns a copy of the given stream. The underlying type used is a `MemoryStream` and if the given `stream` is a `MemoryStream` the operation will attempt to use internal buffer if exposed and return a read-only stream; else a standard `MemoryStream` is used and the `stream` data copied to the that.
24
38
/// </summary>
25
39
/// <param name="stream">The `Stream` instance that contains the source data.</param>
26
40
/// <returns>A new `MemoryStream` object.</returns>
/// Returns a copy of the given stream. The underlying type used is a `MemoryStream` and if the given `stream` is a `MemoryStream` the operation will attempt to use internal buffer if exposed and return a read-only stream; else a standard `MemoryStream` is used and the `stream` data copied to the that.
48
+
/// </summary>
49
+
/// <param name="stream">The `Stream` instance that contains the source data.</param>
50
+
/// <returns>A new `MemoryStream` object.</returns>
0 commit comments