Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Position
override long System.Net.DelegatedStream.Position
get
set
inherited
Definition at line
31
of file
DelegatedStream.cs
.
32
{
33
get
34
{
35
if
(!
CanSeek
)
36
{
37
throw
new
NotSupportedException(
System
.
SR
.
SeekNotSupported
);
38
}
39
return
_stream
.
Position
;
40
}
41
set
42
{
43
if
(!
CanSeek
)
44
{
45
throw
new
NotSupportedException(
System
.
SR
.
SeekNotSupported
);
46
}
47
_stream.Position =
value
;
48
}
49
}
System.IO.Stream.Position
long Position
Definition
Stream.cs:502
System.Net.DelegatedStream.CanSeek
override bool CanSeek
Definition
DelegatedStream.cs:15
System.Net.DelegatedStream._stream
readonly Stream _stream
Definition
DelegatedStream.cs:9
System.SR.SeekNotSupported
static string SeekNotSupported
Definition
SR.cs:142
System.SR
Definition
SR.cs:7
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Net
Mime
QuotedPrintableStream
Generated by
1.10.0