Abstractions.Pipes.Pipe.Pipe C# (CSharp) Метод

Pipe() защищенный Метод

protected Pipe ( string name, object>.Func action ) : System
name string
action object>.Func
Результат System
        protected Pipe(string name, Func<IDictionary<string, object>, IDictionary<string, object>> action)
            : this(name)
        {
            if (action == null)
                throw new ArgumentNullException("action", string.Format("Message action cannot be null, you want us to do *something* with the pipe right?"));

            StreamAction = ((r, w) =>
            {
                return DefaultMessageHandler(r, w, action);
            });
        }

Same methods

Pipe::Pipe ( string name ) : System
Pipe::Pipe ( string name, Func action ) : System