Chimney.MPD.CommandListResponseEventArgs.CommandListResponseEventArgs C# (CSharp) Method

CommandListResponseEventArgs() public method

public CommandListResponseEventArgs ( StreamSocket socket, int id, bool start, bool end, bool command_list_ok ) : System
socket Windows.Networking.Sockets.StreamSocket
id int
start bool
end bool
command_list_ok bool
return System
        public CommandListResponseEventArgs(StreamSocket socket, int id, bool start, bool end, bool command_list_ok)
        {
            this.socket = socket;
            this.start = start;
            this.end = end;
            this.command_list_ok = command_list_ok;
            this.id = id;
        }
    }
CommandListResponseEventArgs