8 references to NotSupported_UnseekableStream
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\StringStream.cs (4)
88
public override long Length => throw new NotSupportedException(SR.
NotSupported_UnseekableStream
);
95
get => throw new NotSupportedException(SR.
NotSupported_UnseekableStream
);
96
set => throw new NotSupportedException(SR.
NotSupported_UnseekableStream
);
287
public override long Seek(long offset, SeekOrigin origin) => throw new NotSupportedException(SR.
NotSupported_UnseekableStream
);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\TranscodingStream.cs (3)
77
public override long Length => throw new NotSupportedException(SR.
NotSupported_UnseekableStream
);
81
get => throw new NotSupportedException(SR.
NotSupported_UnseekableStream
);
447
=> throw new NotSupportedException(SR.
NotSupported_UnseekableStream
);
src\runtime\src\libraries\System.Private.CoreLib\src\System\ThrowHelper.cs (1)
428
throw new NotSupportedException(SR.
NotSupported_UnseekableStream
);