Пример #1
0
        public string[] GetParametersForScope(string parameterScope)
        {
            KeyValue[] options               = new KeyValue[] { };
            KeyValue[] parameterFilter       = new KeyValue[] { new KeyValue("PARAMETER_SCOPE", parameterScope) };
            string[]   parameterResultKeys   = new string[] { "PARAMETER_ID" };
            string[]   parameterResultValues = new string[] { };
            int        errorCode             = imsapi.configGetParameters(sessionContext, options, parameterFilter, parameterResultKeys, out parameterResultValues);

            LogHelper.Info("Api configGetParameters error" + errorCode + ", parameter scope =" + parameterScope);
            return(parameterResultValues);
        }