FormatForeModule

Синтаксис

FormatForeModuleResult FormatForeModule(FormatForeModuleArg tArg)

Параметры

tArg. Параметры выполнения операции.

Описание

Операция FormatForeModule форматирует код модуля.

Комментарии

Операция позволяет произвести форматирование кода модуля путём добавления одиночных отступов и удаления незначимых пробелов в различных элементах кода. Для выполнения операции укажите в поле tArg.moduleText код модуля, к которому необходимо применить форматирование.

Результатом операции будет код модуля после применения форматирования.

Пример

Ниже приведён пример применения форматирования к коду модуля в среде разработки. В запросе передаётся код модуля. В ответе возвращается код модуля после применения форматирования.

SOAP-запрос:

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<FormatForeModule xmlns="http://www.fsight.ru/PP.SOM.Som">
<tArg xmlns="">
  <moduleText>Class test:object Function test:integer; Begin End Function test;End Class test;</moduleText>
  </tArg>
  </FormatForeModule>
  </s:Body>
  </s:Envelope>

SOAP-ответ:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<FormatForeModuleResult xmlns="http://www.fsight.ru/PP.SOM.Som" xmlns:q1="http://www.fsight.ru/PP.SOM.Som" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <moduleText xmlns="">Class test: object Function test: integer; Begin End Function test; End Class test; </moduleText>
  </FormatForeModuleResult>
  </soapenv:Body>
  </soapenv:Envelope>

JSON-запрос:

{
"FormatForeModule" :
{
"tArg" :
{
"moduleText" : "Class test:object\tFunction test:integer;\tBegin\t\t\tEnd Function test;End Class test;"
}
}
}

JSON-ответ:

{
"FormatForeModuleResult" :
{
"moduleText" : "Class test: object \tFunction test: integer; \tBegin \t\t \tEnd Function test; End Class test; "
}
}
public static FormatForeModuleResult FormatForeModule(string text)
{
var somClient = new SomPortTypeClient(); //Прокси-объект для выполнения операций
//Параметры выполнения операции
var tFormat = new FormatForeModule()
{
tArg = new FormatForeModuleArg()
{
moduleText = text
}
};
//
var result = somClient.FormatForeModule(tFormat);
return result;
}

См. также:

Работа со средой разработки