PIPE_ACCESS_INBOUND top-level constant

int const PIPE_ACCESS_INBOUND

The flow of data in the pipe goes from client to server only. This mode gives the server the equivalent of GENERIC_READ access to the pipe. The client must specify GENERIC_WRITE access when connecting to the pipe. If the client must read pipe settings by calling the GetNamedPipeInfo or GetNamedPipeHandleState functions, the client must specify GENERIC_WRITE and FILE_READ_ATTRIBUTES access when connecting to the pipe.

Implementation

const PIPE_ACCESS_INBOUND = 0x00000001;