public int DeleteConfigParameters(string parameterScope) { KeyValue[] options = new KeyValue[] { }; KeyValue[] parameterFilter = new KeyValue[] { new KeyValue("PARAMETER_SCOPE", parameterScope) }; string[] parameterResultKeys = new string[] { "ERROR_CODE" }; string[] parameterResultValues = new string[] { }; int errorCode = imsapi.configDeleteParameters(sessionContext, options, parameterFilter, parameterResultKeys, out parameterResultValues); LogHelper.Info("Api configDeleteParameters error" + errorCode); return(errorCode); }