private object GetAt()

in src/Apache.IoTDB.Data/IoTDBConnectionStringBuilder.cs [355:383]


        private object GetAt(Keywords index)
        {

            switch (index)
            {
                case Keywords.DataSource:
                    return DataSource;
                case Keywords.Password:
                    return Password;
                case Keywords.Username:
                    return Username;

                case Keywords.Port:
                    return Port;
                case Keywords.FetchSize:
                    return FetchSize;
                case Keywords.Compression:
                    return Compression;
                case Keywords.PoolSize:
                    return PoolSize;
                case Keywords.ZoneId:
                    return ZoneId;
                case Keywords.TimeOut:
                    return TimeOut;
                default:
                    Debug.Assert(false, "Unexpected keyword: " + index);
                    return null;
            }
        }