Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
InBufferSize
virtual unsafe int System.IO.Pipes.PipeStream.InBufferSize
get
Definition at line
391
of file
PipeStream.cs
.
392
{
393
get
394
{
395
CheckPipePropertyOperations
();
396
if
(!
CanRead
)
397
{
398
throw
new
NotSupportedException(
System
.
SR
.
NotSupported_UnreadableStream
);
399
}
400
Unsafe
.SkipInit(out uint result);
401
if
(!global::Interop.Kernel32.GetNamedPipeInfo(
_handle
,
null
,
null
, &result,
null
))
402
{
403
throw
WinIOError
(
Marshal
.
GetLastPInvokeError
());
404
}
405
return
(
int
)result;
406
}
407
}
System.IO.Pipes.PipeStream._handle
SafePipeHandle _handle
Definition
PipeStream.cs:224
System.IO.Pipes.PipeStream.WinIOError
Exception WinIOError(int errorCode)
Definition
PipeStream.cs:1037
System.IO.Pipes.PipeStream.CheckPipePropertyOperations
virtual void CheckPipePropertyOperations()
Definition
PipeStream.cs:584
System.IO.Pipes.PipeStream.CanRead
override bool CanRead
Definition
PipeStream.cs:319
System.Runtime.CompilerServices.Unsafe
Definition
Unsafe.cs:6
System.Runtime.InteropServices.Marshal.GetLastPInvokeError
static int GetLastPInvokeError()
System.Runtime.InteropServices.Marshal
Definition
Marshal.cs:14
System.SR.NotSupported_UnreadableStream
static string NotSupported_UnreadableStream
Definition
SR.cs:32
System.SR
Definition
SR.cs:7
System
Definition
BlockingCollection.cs:8
System
IO
Pipes
PipeStream
Generated by
1.10.0