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 {
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 {
404 }
405 return (int)result;
406 }
407 }
Exception WinIOError(int errorCode)
virtual void CheckPipePropertyOperations()
static string NotSupported_UnreadableStream
Definition SR.cs:32
Definition SR.cs:7