コード例 #1
0
        protected internal sealed override void ParseCommand()
        {
            Info info = new Info(dataBuffer, dataLength, dataOffset);

            map = info.ParseMultiResponse();
            Finish();
        }
コード例 #2
0
        /// <summary>
        /// Get all the default info from the specified database server node.
        /// </summary>
        /// <param name="conn">socket connection to server node</param>
        public static Dictionary <string, string> Request(Connection conn)
        {
            Info info = new Info(conn);

            return(info.ParseMultiResponse());
        }
コード例 #3
0
 /// <summary>
 /// Get all the default info from the specified database server node.
 /// </summary>
 /// <param name="conn">socket connection to server node</param>
 public static Dictionary<string, string> Request(Connection conn)
 {
     Info info = new Info(conn);
     return info.ParseMultiResponse();
 }