8 references to NotSupported_UnseekableStream
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\StringStream.cs (4)
88public override long Length => throw new NotSupportedException(SR.NotSupported_UnseekableStream); 95get => throw new NotSupportedException(SR.NotSupported_UnseekableStream); 96set => throw new NotSupportedException(SR.NotSupported_UnseekableStream); 287public 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)
77public override long Length => throw new NotSupportedException(SR.NotSupported_UnseekableStream); 81get => 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)
428throw new NotSupportedException(SR.NotSupported_UnseekableStream);