예제 #1
0
        /// <summary>
        /// Bind the pipe to a file path (Unix) or a name (Windows).
        /// </summary>
        /// <param name="name"></param>
        public void Bind(string name)
        {
            this.EnsureCallingThread();

            Libuv.EnsureSuccess(Libuv.uv_pipe_bind(this, name));
        }