bool CloseDashboard(string mon)
mon. Moniker of opened information panel instance.
The CloseDashboard operation closes information panel instance.
To execute the operation, in the mon field specify moniker of opened information panel instance. The moniker can be obtained on executing the OpenDashboard operation.
The operation results in the logical true if information panel instance was closed successfully.
Below is the example of closing information panel instance. The request contains moniker of opened information panel instance. The response contains whether closing is successful.
{
"CloseDashboard" :
{
"mon" : "NGDHDGCPEHADGOAENOBLDBIDDCDEGILEPLMLPCIIGMNMBLKH!M!S!PLHPAOLCPEHADGOAEAHKONCEDOLHDDIAEGIKMEIJNDDGMDEOI"
}
}
{
"CloseDashboardResult" : "1"
}
public static bool CloseDashboard(string moniker)
{
var somClient = new SomPortTypeClient(); // Proxy object for operation execution
// Operation execution parameters
var tClose = new CloseDashboard()
{
mon = moniker
};
// Close information panel instance
var b = somClient.CloseDashboard(tClose);
return b;
}
See also: