GetDevEnvSettingsResult GetDevEnvSettings(MbId tMb)
tMb. Repository connection moniker.
The GetDevEnvSettings operation gets development environment parameters.
To execute the operation, in the tMb fields specify repository connection moniker. The moniker can be obtained on executing the OpenMetabase operation.
The operation results in the development environment parameters.
Below is the example of getting development environment parameters. The request contains repository connection moniker. The response contains parameter values.
{
"GetDevEnvSettings" :
{
"tMb" :
{
"@type" : "q1:OpenMetabaseResult",
"id" : "S1!M",
"sessKey" : "182301",
"sessCookie" : "C1",
"version" : "163",
"defLocale" : "1049"
}
}
}
{
"GetDevEnvSettingsResult" :
{
"settings" :
{
"tabSize" : "4"
}
}
}
public static GetDevEnvSettingsResult GetDevEnvSettings(MbId mb)
{
var somClient = new SomPortTypeClient(); //Proxy object for operation execution
//Operation execution parameters
var tGet = new GetDevEnvSettings()
{
//Repository connection moniker
tMb = mb
};
//Get development environment parameters
var result = somClient.GetDevEnvSettings(tGet);
return result;
}
See also: